diff --git a/README.md b/README.md
new file mode 100644
index 0000000..abdb4a6
--- /dev/null
+++ b/README.md
@@ -0,0 +1,214 @@
+# Plaud SDK for React Native
+
+A local [Expo module](https://docs.expo.dev/modules/overview/) that bridges Plaud's native
+iOS device SDK into React Native. It exposes BLE scan/connect, on-device recording events,
+file listing, and audio export to JavaScript.
+
+- **`modules/plaud-sdk/`** — the module itself. This is the piece you drop into another
+ project. See `modules/plaud-sdk/README.md` for the terse module-level notes.
+- **`react-native-demo/`** — a reference Expo (SDK 57) app wiring the module end to end:
+ scan → connect → list → export → transcribe. `src/app/index.tsx` is the canonical usage
+ example.
+
+---
+
+## How the module works
+
+The module is three layers stacked on top of each other. A JS call travels down; native
+events travel back up.
+
+```
+ your React Native code
+ │ import { PlaudSdk, isAvailable } from 'plaud-sdk'
+ ▼
+ ┌─────────────────────────────┐
+ │ JS layer (src/*.ts) │ requireNativeModule('PlaudSdk'), fully typed,
+ │ │ degrades to a no-op Proxy off-iOS
+ └─────────────────────────────┘
+ │ Expo Modules bridge (AsyncFunction / Events)
+ ┌─────────────────────────────┐
+ │ Plaud native SDK │ three precompiled .xcframeworks
+ │ (ios/Frameworks/*) │ BLE / Device / WiFi
+ └─────────────────────────────┘
+```
+
+**1. JS layer (`src/index.ts`, `src/PlaudSdk.types.ts`).**
+`requireNativeModule('PlaudSdk')` resolves the native module at runtime. It's called lazily
+inside a `try/catch` and only on iOS, so the module never throws at import time. Two exports
+matter:
+- `isAvailable` — `true` only when the native module is linked and callable (a physical iOS
+ device). Guard every call site with it.
+- `PlaudSdk` — the typed handle. When the native module is absent (Android / simulator), it's
+ a `Proxy` whose methods reject and whose `addListener` is a harmless no-op, so shared code
+ doesn't need platform branches everywhere.
+
+**2. Plaud native SDK (`ios/Frameworks/*.xcframework`).**
+Three precompiled binary frameworks — `PlaudBleSDK`, `PlaudDeviceBasicSDK`, `PlaudWiFiSDK` —
+vendored by `ios/PlaudSdk.podspec` (`vendored_frameworks`). CocoaPods embeds and code-signs
+them automatically; there are no Podfile or Xcode edits to make by hand.
+
+---
+
+## ⚠️ Platform constraints — read this first
+
+The Plaud frameworks are **arm64, iOS 15+, device-only**. There is **no simulator slice** and
+**no Android support**. That means:
+
+- You must run on a **physical iPhone** (`npx expo run:ios --device`), never the simulator.
+- You must use a **custom dev build**, not Expo Go (this is custom native code).
+- On Android or the simulator, `isAvailable` is `false` and every `PlaudSdk` method rejects —
+ so guard call sites and keep the app functional (just without the SDK) on those targets.
+
+---
+
+## Implementing the module in an existing React Native project
+
+The module is built on Expo's module system, so the smoothest path is an Expo (or
+Expo-prebuild) app. Bare React Native works too — you just need the Expo Modules
+infrastructure installed first.
+
+### Prerequisites
+
+| Tool | Notes |
+| ----------------------------- | ------------------------------------------------- |
+| Node.js | v20+ (v24 used here) |
+| Xcode | 16.x+, with a physical iPhone + Apple ID |
+| CocoaPods | `brew install cocoapods` |
+| An Expo-based RN app | Expo SDK 52+ recommended (this repo uses SDK 57) |
+
+### Step 0 (bare RN only): add Expo Modules support
+
+Skip this if your app already uses Expo. For a bare React Native app, install the Expo Modules
+runtime once — it's what provides `requireNativeModule` and the autolinking `PlaudSdk`
+depends on:
+
+```bash
+npx install-expo-modules@latest
+```
+
+### Step 1: copy the module into your app
+
+Place the module where Expo autolinking looks — a `modules/` folder at your project root:
+
+```bash
+cp -R modules/plaud-sdk /path/to/your-app/modules/plaud-sdk
+```
+
+Then reference it from your app's `package.json` so Metro and TypeScript resolve the
+`plaud-sdk` import to the local folder:
+
+```jsonc
+// your-app/package.json
+{
+ "dependencies": {
+ "plaud-sdk": "file:./modules/plaud-sdk"
+ }
+}
+```
+
+```bash
+npm install
+```
+
+> The module's `expo-module.config.json` is what makes autolinking pick it up — no manual
+> native linking, no Podfile edits.
+
+### Step 2: declare BLE permissions in `app.json`
+
+These live in the app's config (not the module) so they survive `expo prebuild`. Add them
+under `expo.ios.infoPlist`:
+
+```jsonc
+{
+ "expo": {
+ "ios": {
+ "infoPlist": {
+ "NSBluetoothAlwaysUsageDescription": "Plaud uses Bluetooth to connect to your recorder and sync recordings.",
+ "UIBackgroundModes": ["bluetooth-central"]
+ }
+ }
+ }
+}
+```
+
+### Step 3: generate the native project and build
+
+```bash
+npx expo prebuild -p ios # regenerates ios/ from app.json and runs pod install
+npx expo run:ios --device # build + install on a connected iPhone
+```
+
+Re-run `expo prebuild` after any native config change. If you're in a bare app that manages
+`ios/` by hand, run `pod install` from `ios/` instead — autolinking still discovers the module.
+
+### Step 4: use it from JS
+
+```ts
+import { PlaudSdk, isAvailable } from 'plaud-sdk';
+
+if (!isAvailable) {
+ // Android / simulator — the native module isn't linked. Degrade gracefully.
+}
+
+// 1. Initialise with a per-user JWT (see "Tokens" below).
+await PlaudSdk.initSDK({
+ userAccessToken, // per-user Bearer JWT
+ customDomain: 'platform-us.plaud.ai', // domain only, no https://
+ userId: 'your-app-user-id', // reused as the connect deviceToken
+});
+
+// 2. Subscribe to the event stream — this is where results land.
+const subs = [
+ PlaudSdk.addListener('scanResult', ({ devices }) => {/* show devices */}),
+ PlaudSdk.addListener('connectState', ({ connected, failed }) => {
+ if (connected) PlaudSdk.getFileList(); // ask for recordings once connected
+ }),
+ PlaudSdk.addListener('fileList', ({ files }) => {/* show recordings */}),
+ PlaudSdk.addListener('exportProgress', ({ progress, message }) => {/* progress UI */}),
+];
+
+// 3. Drive it.
+await PlaudSdk.startScan();
+// user taps a device from scanResult:
+await PlaudSdk.connectBleDevice({ uuid: device.uuid });
+// user taps a file from fileList:
+const { outputPath } = await PlaudSdk.exportAudio({ sessionId, format: 'mp3' });
+
+// 4. Clean up listeners on unmount.
+subs.forEach((s) => s.remove());
+```
+
+The demo's `react-native-demo/src/app/index.tsx` is a complete, production-shaped version of
+this (React state, error handling, live-recording banners). Read it before building your own
+screen.
+
+---
+
+## Tokens and transcription (your app's responsibility)
+
+`initSDK` needs a **per-user access token** (a Bearer JWT). The SDK does *not* mint it — that's
+an app/backend concern. Mint it via Plaud's partner OAuth flow on your backend and hand it to
+the client. For local testing you can paste one via `EXPO_PUBLIC_PLAUD_ACCESS_TOKEN` (Expo
+inlines `EXPO_PUBLIC_*` at build time).
+
+Once a recording is exported to a local file, **uploading and transcribing it is plain HTTP —
+not part of this native module**. The demo shows the full flow in
+`react-native-demo/src/lib/plaud-transcription.ts` (presigned S3 upload → submit → poll).
+
+> ⚠️ The demo calls the Plaud platform API directly from the device with `EXPO_PUBLIC_*`
+> credentials, which are extractable from the bundle. That's fine for a demo, but in
+> production the transcription API key and upload must live behind a backend.
+
+---
+
+## Running the demo app
+
+```bash
+cd react-native-demo
+npm install
+cp .env.example .env # fill in EXPO_PUBLIC_PLAUD_* values
+npx expo prebuild -p ios
+npx expo run:ios --device # physical iPhone required
+```
+
+See `react-native-demo/README.md` for the full build-and-run walkthrough.
diff --git a/modules/plaud-sdk/README.md b/modules/plaud-sdk/README.md
new file mode 100644
index 0000000..275e203
--- /dev/null
+++ b/modules/plaud-sdk/README.md
@@ -0,0 +1,38 @@
+# plaud-sdk (local Expo module)
+
+Native iOS bridge to Plaud's device SDK — the React Native counterpart of the Capacitor
+`PlaudSdk` plugin. Exposes BLE connect/scan, on-device file listing, and audio export to JS,
+plus an event stream for scan results, connection state, device-initiated recording, etc.
+
+## How it's wired
+- **Autolinked** via `use_expo_modules!` — Expo scans `./modules` during prebuild, so no
+ Podfile or Xcode edits are needed. `expo-module.config.json` registers `PlaudSdkModule`.
+- The Plaud SDK ships as three precompiled `.xcframework`s in `ios/Frameworks/`
+ (`PlaudBleSDK`, `PlaudDeviceBasicSDK`, `PlaudWiFiSDK`), vendored by `PlaudSdk.podspec`
+ (`vendored_frameworks`). CocoaPods embeds and code-signs them automatically.
+- BLE permissions (`NSBluetoothAlwaysUsageDescription`, `UIBackgroundModes: bluetooth-central`)
+ live in the app's `app.json` under `ios.infoPlist`, so they survive `expo prebuild`.
+
+## ⚠️ Device only
+The frameworks are **arm64, iOS 15+, device-only** — there is no simulator slice. You must:
+- Run on a **physical iPhone** (`npx expo run:ios --device`), not the simulator.
+- Use a **dev build**, not Expo Go (this is custom native code).
+
+On Android / simulator the JS `PlaudSdk` methods reject and `isAvailable` is `false`.
+
+## Usage
+```ts
+import { PlaudSdk, isAvailable } from 'plaud-sdk';
+
+if (isAvailable) {
+ await PlaudSdk.initSDK({ userAccessToken, customDomain: 'platform-us.plaud.ai', userId });
+ const sub = PlaudSdk.addListener('scanResult', ({ devices }) => { /* ... */ });
+ await PlaudSdk.startScan();
+ // ...later: sub.remove();
+}
+```
+
+## Not ported from the Capacitor plugin
+`readFile` / `putBinary` — those existed only to work around WKWebView CORS when Capacitor
+loaded a remote origin. React Native has no WebView/CORS constraint: read exported files with
+`expo-file-system` and upload with `fetch`.
diff --git a/modules/plaud-sdk/expo-module.config.json b/modules/plaud-sdk/expo-module.config.json
new file mode 100644
index 0000000..4d95835
--- /dev/null
+++ b/modules/plaud-sdk/expo-module.config.json
@@ -0,0 +1,6 @@
+{
+ "platforms": ["apple"],
+ "apple": {
+ "modules": ["PlaudSdkModule"]
+ }
+}
diff --git a/modules/plaud-sdk/index.ts b/modules/plaud-sdk/index.ts
new file mode 100644
index 0000000..9b28da1
--- /dev/null
+++ b/modules/plaud-sdk/index.ts
@@ -0,0 +1,2 @@
+export * from './src';
+export { default } from './src';
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/Info.plist b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/Info.plist
new file mode 100644
index 0000000..a2264c5
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/Info.plist
@@ -0,0 +1,27 @@
+
+
+
+
+ AvailableLibraries
+
+
+ BinaryPath
+ PlaudBleSDK.framework/PlaudBleSDK
+ LibraryIdentifier
+ ios-arm64
+ LibraryPath
+ PlaudBleSDK.framework
+ SupportedArchitectures
+
+ arm64
+
+ SupportedPlatform
+ ios
+
+
+ CFBundlePackageType
+ XFWK
+ XCFrameworkFormatVersion
+ 1.0
+
+
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXAvcFilePlayer.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXAvcFilePlayer.h
new file mode 100644
index 0000000..ea4a9e3
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXAvcFilePlayer.h
@@ -0,0 +1,56 @@
+//
+// JXAvcFilePlayer.h
+// PenBleSDK
+//
+// Created by 天诺泰 on 2019/5/21.
+// Copyright © 2019 天诺泰. All rights reserved.
+//
+
+#import
+
+@protocol JXAvcFilePlayerDelegate
+/// 播放状态改变
+- (void)onStateChanged:(BOOL)isPlaying;
+/// 播放进度(秒)
+- (void)onPlayLocation:(double)seconds;
+
+@end
+
+/// avc/opus文件播放器
+/// @deprecated 废弃,请使用JXOggPlayer
+@interface JXAvcFilePlayer : NSObject
+
+@property (nonatomic, weak) id delegate;
+@property (nonatomic, assign) BOOL isPrepared;
+@property (nonatomic, strong) NSString *filePath; //文件路径
+@property (nonatomic, assign) NSInteger fileSize; //文件大小
+@property (nonatomic, assign) NSInteger curOffset; //当前播放文件偏移量
+
++ (instancetype)shared;
+/// 是否开启降噪、增益
+- (void)openNsAgc:(BOOL)open;
+
+/// 是否开启声加降噪
+- (void)openSoundPlusNs:(BOOL)open;
+
+/// 设置avc文件路径
+- (void)setAudioPath:(NSString *)avcPath numerOfChannel:(int)channels;
+
+/// 开始播放
+- (void)play;
+/// 播放速率
+- (void)setPlayRate:(Float32)rate;
+/// 跳到某个位置
+- (void)seekTo:(NSTimeInterval)seconds;
+/// 暂停播放
+- (void)pause;
+/// 结束播放
+- (void)stop;
+///是否正在播放
+- (BOOL)isPlaying;
+///播放到的毫秒值
+- (NSInteger)curMillisec;
+///总时长
+- (double)duration;
+
+@end
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOggPlayer.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOggPlayer.h
new file mode 100644
index 0000000..7756259
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOggPlayer.h
@@ -0,0 +1,83 @@
+//
+// JXOggPlayer.h
+// PenBleSDK
+//
+// Created by 天诺泰 on 2021/5/31.
+// Copyright © 2021 天诺泰. All rights reserved.
+//
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@protocol JXOggPlayerDelegate
+
+/// 播放状态改变
+- (void)onStateChanged:(BOOL)isPlaying;
+/// 播放进度(秒)
+- (void)onPlayingLocation:(double)seconds;
+
+@end
+
+/// 直接播放录音笔ogg文件的类
+@interface JXOggPlayer : NSObject
+
+@property (nonatomic, weak) id delegate;
+@property (nonatomic, assign, readonly) BOOL isPrepared;
+/// 文件路径,不要直接操作
+@property (nonatomic, strong, readonly) NSString *filePath;
+/// 文件总大小
+@property (nonatomic, assign, readonly) NSInteger fileSize;
+/// 录音文件总时长(单位毫秒)
+@property (nonatomic, assign, readonly) NSInteger totalMillsec;
+/// 录音当前播放进度(单位毫秒)
+@property (nonatomic, assign, readonly) NSInteger curMillsec;
+
++ (instancetype)shared;
+
+/// 设置ogg文件路径和音频声道数
+/// @param oggPath ogg文件路径
+/// @param channel 声道数
+- (void)setOggPath:(NSString *)oggPath withChannel:(int)channel;
+
+/// 设置opus文件路径和音频声道数
+/// @param opusPath opus纯音频未解码数据文件路径
+/// @param channel 声道数
+- (void)setOpusPath:(NSString *)opusPath withChannel:(int)channel;
+
+/// 设置 pcm 文件路径和音频声道数
+/// @param pcmPath pcm 数据文件路径
+/// @param channel 声道数
+- (void)setPCMPath:(NSString *)pcmPath withChannel:(int)channel;
+
+/// 是否开启降噪、增益(仅单声道)
+- (void)openNsAgc:(BOOL)open;
+
+/// 设置是否启用 Plaud 算法降噪(基于 plaud_algo,按 256 帧处理,16k 单声道)
+- (void)setPlaudAlgo:(BOOL)enabled;
+
+/// 开始播放
+- (void)play;
+
+/// 设置倍速播放
+/// @param rate 播放倍率
+- (void)setPlayRate:(Float32)rate;
+/// 跳到某个位置;因为会清空音频队列,跳转后需要手动恢复播放
+/// @param seconds 单位秒
+- (void)seekTo:(NSTimeInterval)seconds;
+
+/// 跳到某个位置;因为会清空音频队列,跳转后需要手动恢复播放
+/// @param millSec 单位 毫秒
+- (void)seekToMillSec:(NSTimeInterval)millSec;
+
+/// 暂停播放
+- (void)pause;
+/// 结束播放
+- (void)stop;
+///是否正在播放
+- (BOOL)isPlaying;
+
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOpusDecoder.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOpusDecoder.h
new file mode 100644
index 0000000..92fc180
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOpusDecoder.h
@@ -0,0 +1,25 @@
+//
+// JXOpusDecoder.h
+// PenBleSDK
+//
+// Created by 天诺泰 on 2019/8/15.
+// Copyright © 2019 天诺泰. All rights reserved.
+//
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface JXOpusDecoder : NSObject
+
+/// 初始化解码器
+/// @param channels 声道数,1,2,4
+- (instancetype)initWithChannels:(int)channels;
+
+/// 解码数据·
+/// @param avcData 数据,单声道包大小是80,双声道包大小是160,四声道是320
+- (nullable NSData *)decode:(NSData *)avcData;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Mp3Convert.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Mp3Convert.h
new file mode 100644
index 0000000..68dd71b
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Mp3Convert.h
@@ -0,0 +1,152 @@
+//
+// Mp3Convert.h
+// PenBleSDK
+//
+// Created by 天诺泰 on 2019/8/16.
+// Copyright © 2019 天诺泰. All rights reserved.
+//
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface Mp3Convert : NSObject
+
++ (instancetype)shared;
+
+//+ (void)jx_swap:(int *)a :(int *)b;
+/// 生成声波
+/// @param avcPath 原始文件路径
+/// @param channels 声道数
+/// @param callback 回调,每秒一个分贝值
+- (void)generateSoundWave:(NSString *)avcPath
+ channels:(int)channels
+ callback:(void(^)(int second, int secVolume))callback;
+
+/// 生成音乐模式下wav的声波
+/// @param wavPath wav文件
+/// @param channels 声道数
+/// @param simpleRate 采样率
+/// @param callback 回调,每秒一个分贝值
+- (void)generateSoundWave:(NSString *)wavPath
+ channels:(int)channels
+ simpleRate:(int)simpleRate
+ callback:(void(^)(int second, int secVolume))callback;
+
+/// 取消生成声波的任务
+- (void)generateSoundWaveCancel;
+
+/// avc转pcm
+/// @param avcPath 原始文件路径
+/// @param pcmPath 目标文件路径
+/// @param channels 声道数
+/// @param ns_agc 是否降噪增益
+/// @param callback 进度回调
+- (void)convertAvc:(NSString *)avcPath
+ toPcm:(NSString *)pcmPath
+ channels:(int)channels
+ ns_agc:(BOOL)ns_agc
+ callback:(void(^)(int64_t curPos))callback;
+
+/// ogg转pcm
+/// @param oggPath ogg文件路径
+/// @param pcmPath pcm文件路径
+/// @param channels 声道数
+/// @param ns_agc 是否降噪增益
+/// @param callback 进度回调
+- (void)convertOgg:(NSString *)oggPath
+ toPcm:(NSString *)pcmPath
+ channels:(int)channels
+ ns_agc:(BOOL)ns_agc
+ callback:(void(^)(int64_t curPos))callback;
+
+/// pcm转mp3
+/// @param pcmPath pcm文件路径
+/// @param mp3Path mp3文件路径
+/// @param quality 音质质量(默认选7) 2 near-best quality, not too slow;5 good quality, fast; 7 ok quality, really fast
+/// @param channels 声道数
+/// @param callback 进度回调
+- (void)convertPcm:(NSString *)pcmPath
+ toMp3:(NSString *)mp3Path
+ quality:(int)quality
+ channels:(int)channels
+ callback:(void(^)(int64_t curPos))callback;
+
+
+/// avc转mp3
+/// @param avcPath 原始未解码文件路径
+/// @param mp3Path mp3文件路径
+/// @param quality mp3音质 2 near-best quality, not too slow;5 good quality, fast;7 ok quality, really fast 默认7
+/// @param channels 声道数
+/// @param ns_agc 是否要做降噪增益?(笔端如果做了app就不用做)
+/// @param callback 回调进度(已处理文件偏移量)
+- (void)convertAvc:(NSString *)avcPath
+ toMp3:(NSString *)mp3Path
+ quality:(int)quality
+ channels:(int)channels
+ ns_agc:(BOOL)ns_agc
+ callback:(void(^)(int64_t curPos))callback;
+
+/// ogg转mp3
+/// @param oggPath ogg文件路径
+/// @param mp3Path 待生成的mp3文件路径
+/// @param quality mp3音质 2 near-best quality, not too slow;5 good quality, fast;7 ok quality, really fast 默认7
+/// @param channels ogg声道数
+/// @param ns_agc 是否要做降噪增益?(@see BleDevice)
+/// @param callback 回调进度(已处理文件偏移量)
+- (void)convertOgg:(NSString *)oggPath
+ toMp3:(NSString *)mp3Path
+ quality:(int)quality
+ channals:(int)channels
+ ns_agc:(BOOL)ns_agc
+ callback:(void(^)(int64_t curPos))callback;
+
+
+/// avc转wave
+/// @param avcPath 原始未解码文件路径
+/// @param wavePath wave文件路径
+/// @param channels 声道数
+/// @param simpleRate 采样率,16000(16k)、48000(48k)
+/// @param ns_agc 是否要做降噪增益?(笔端如果做了app就不用做)
+/// @param callback 回调进度(已处理文件偏移量)
+- (void)convertAvc:(NSString *)avcPath
+ toWave:(NSString *)wavePath
+ channels:(int)channels
+ simpleRate:(uint32_t)simpleRate
+ ns_agc:(BOOL)ns_agc
+ callback:(void(^)(int64_t curPos))callback;
+
+/// avc 转降噪 wave
+/// @param avcPath 原始未解码文件路径
+/// @param wavePath wave文件路径
+/// @param channels 声道数
+/// @param simpleRate 采样率,16000(16k)、48000(48k)
+/// @param soundPlus 是否要做降噪增益?(笔端如果做了app就不用做)
+/// @param callback 回调进度(已处理文件偏移量)
+- (void)convertAvc:(NSString *)avcPath
+ toNoiseReductionWave:(NSString *)wavePath
+ channels:(int)channels
+ simpleRate:(uint32_t)simpleRate
+ soundPlus:(BOOL)soundPlus
+noiseReductionGain:(int)gain
+ callback:(void(^)(int64_t curPos))callback;
+
+
+/// 取消avcToPcm的任务
+- (void)convertAvcToPcmCancel;
+/// 取消压缩PcmToMp3的任务
+- (void)convertPcmToMp3Cancel;
+/// 取消压缩AvcToMp3的任务
+- (void)convertAvcToMp3Cancel;
+/// 取消ogg转mp3的任务
+- (void)convertOggToMp3Cancel;
+
+/// 取消ogg转pcm的任务
+- (void)convertOggToPcmCancel;
+/// 取消压缩AvcToWav的任务
+- (void)convertAvcToWavCancel;
+/// 取消压缩AvcToNoiseReductionWav的任务
+- (void)convertAvcToNoiseReductionWavCancel;
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NSData+SHA.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NSData+SHA.h
new file mode 100644
index 0000000..263ef8f
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NSData+SHA.h
@@ -0,0 +1,19 @@
+//
+// NSData_SHA1.h
+// SwiftyRSA
+//
+// Created by Paul Wilkinson on 19/04/2016.
+// Copyright © 2016 Scoop. All rights reserved.
+//
+
+#import
+
+@interface NSData (NSData_SwiftyRSASHA)
+
+- (nonnull NSData*) SwiftyRSASHA1;
+- (nonnull NSData*) SwiftyRSASHA224;
+- (nonnull NSData*) SwiftyRSASHA256;
+- (nonnull NSData*) SwiftyRSASHA384;
+- (nonnull NSData*) SwiftyRSASHA512;
+
+@end
\ No newline at end of file
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NsAgcUtil.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NsAgcUtil.h
new file mode 100644
index 0000000..7542f27
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NsAgcUtil.h
@@ -0,0 +1,21 @@
+//
+// NsAgcUtil.h
+// PenBleSDK
+//
+// Created by 天诺泰 on 2020/2/24.
+// Copyright © 2020 天诺泰. All rights reserved.
+//
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface NsAgcUtil : NSObject
+
+- (nullable NSData *)process:(NSData *)pcmData channesl:(int)channels;
+
+- (void)procress:(int16_t *)input channels:(int)channels;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/OggUtil.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/OggUtil.h
new file mode 100644
index 0000000..7ccf9aa
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/OggUtil.h
@@ -0,0 +1,76 @@
+//
+// OggUtil.h
+// PenBleSDK
+//
+// Created by 天诺泰 on 2019/10/22.
+// Copyright © 2019 天诺泰. All rights reserved.
+//
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface OggUtil : NSObject
+
++ (instancetype)shared;
+
+/// 生成声波
+/// @param oggPath 原始文件路径
+/// @param channels 声道数
+/// @param callback 回调,每秒一个分贝值
+- (void)generateSoundWave:(NSString *)oggPath
+ channels:(int)channels
+ callback:(void(^)(int second, int secVolume, int progress))callback;
+
+/// 取消生成声波的任务
+- (void)generateSoundWaveCancel;
+
+
+/// 封装ogg
+/// @param avcPath opus压缩文件路径
+/// @param oggPath 目标ogg文件路径
+/// @param cutOut 是否截取?(讯飞的离线识别虽然说是5个小时,但是好像只能传4小时59分50秒的样子)
+/// @param channels 声道数(源数据声道)
+/// @param targetChannels 目标声道(单声道还是双声道?双声道可以只获取单声道的,语音识别的一般只支持单声道;双声道转双声道有点问题,声音不好)
+/// @param ns_agc 做降噪、增益
+/// @param callback 回调
+- (void)convertAvc:(NSString *)avcPath
+ toOgg:(NSString *)oggPath
+ cutOut:(BOOL)cutOut
+ channels:(int32_t)channels
+ targetChannels:(int32_t)targetChannels
+ ns_agc:(BOOL)ns_agc
+ callback:(void(^)(int64_t curPos))callback;
+
+/// 取消转码任务
+- (void)convertCancel;
+
+///提取pcm纯数据
+- (void)convertOgg:(NSString *)oggPath
+ toOpus:(NSString *)opusPath
+ channels:(int32_t)channels
+ callback:(void(^)(Boolean completed))callback;
+
+/// 单、双声道ogg转单声道ogg
+/// @param originPath 双声道ogg(必须是从录音笔直接获取的,其他格式不支持)
+/// @param singlePath 目标单声道ogg
+/// @param callback 进度回调
+- (void)convertOgg:(NSString *)originPath
+ toSingle:(NSString *)singlePath
+ channels:(int32_t)channels
+ callback:(void(^)(int64_t curPos))callback;
+
+
+/// 四声道ogg转单声道ogg
+/// @param originPath 四声道ogg(必须是从录音笔直接获取的,其他格式不支持)
+/// @param singlePath 目标单声道ogg
+/// @param callback 进度回调
+- (void)convertFourChannelOgg:(NSString *)originPath
+ toSingle:(NSString *)singlePath
+ callback:(void(^)(int64_t curPos))callback;
+
+
+
+@end
+
+NS_ASSUME_NONNULL_END
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudAlgoTool.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudAlgoTool.h
new file mode 100644
index 0000000..c0adcba
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudAlgoTool.h
@@ -0,0 +1,41 @@
+//
+// PlaudAlgoTool.h
+// PenBleSDK
+//
+// Created for PlaudAlgo wrapper.
+//
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface PlaudAlgoTool : NSObject
+
++ (instancetype)shared;
+
+/// 是否启用 PlaudAlgo 处理
+@property (nonatomic, assign) BOOL enabled;
+
+/// 初始化算法(如有需要可重复调用保证幂等)
+- (void)setup;
+
+/// 处理 PCM int16 数据,要求 length 为采样点数(每点 2 字节),内部按 256 帧切片
+- (NSData *)processInt16:(int16_t *)input length:(int)length;
+
+/// 处理 WAV 文件,inputPath 为 16k/16bit/mono 的 WAV,输出 WAV
+- (BOOL)processWavFile:(NSString *)inputPath
+ outputPath:(NSString *)outputPath
+ progress:(void (^)(float progress))progressCallback;
+
+/// 处理裸 PCM 文件,输入/输出均为 16k/16bit/mono 的 PCM
+- (BOOL)processPcmFile:(NSString *)inputPath
+ outputPath:(NSString *)outputPath
+ progress:(void (^)(float progress))progressCallback;
+
+/// 获取底层算法版本号
+- (NSInteger)version;
+
+@end
+
+NS_ASSUME_NONNULL_END
+
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK-Swift.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK-Swift.h
new file mode 100644
index 0000000..4240849
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK-Swift.h
@@ -0,0 +1,2538 @@
+#if 0
+#elif defined(__arm64__) && __arm64__
+// Generated by Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)
+#ifndef PLAUDBLESDK_SWIFT_H
+#define PLAUDBLESDK_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 "-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)
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
+#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
+#pragma clang diagnostic pop
+#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 !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 !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 !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 !defined(SWIFT_NOESCAPE)
+# if __has_attribute(noescape)
+# define SWIFT_NOESCAPE __attribute__((noescape))
+# else
+# define SWIFT_NOESCAPE
+# endif
+#endif
+#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 !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 !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
+#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 __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 !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
+#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(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
+@import CoreBluetooth;
+@import CoreFoundation;
+@import Dispatch;
+@import Foundation;
+@import ObjectiveC;
+@import Security;
+#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"
+#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
+
+#if __has_attribute(external_source_symbol)
+# pragma push_macro("any")
+# undef any
+# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="PlaudBleSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
+# pragma pop_macro("any")
+#endif
+
+#if defined(__OBJC__)
+@class BleDevice;
+@protocol BleAgentProtocol;
+@protocol GlassProtocol;
+@class NSString;
+@class NSData;
+@class NSNumber;
+@class UpdateInfo;
+
+/// 蓝牙传输控制类
+SWIFT_CLASS("_TtC11PlaudBleSDK8BleAgent")
+@interface BleAgent : NSObject
+/// 单例
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) BleAgent * _Nonnull shared;)
++ (BleAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+/// 封装的录音笔实体类
+@property (nonatomic, strong) BleDevice * _Nullable bleDevice;
+@property (nonatomic, weak) id _Nullable delegate;
+@property (nonatomic, weak) id _Nullable glassDelegate;
+/// 蓝牙是否可用
+@property (nonatomic, readonly) BOOL isPoweredOn;
+/// 是否已连接设备
+@property (nonatomic, readonly) BOOL isConnected;
+/// 是否已绑定设备
+@property (nonatomic, readonly) BOOL isBinded;
+/// 同步文件列表是否仅获取单个文件
+@property (nonatomic, readonly) BOOL isOnlyOne;
+/// 是否正在录音
+@property (nonatomic, readonly) BOOL isRecording;
+/// 是否需要解码数据流
+@property (nonatomic, readonly) BOOL needDecode;
+/// 实时录音的场景是不是音乐模式?
+@property (nonatomic, readonly) BOOL isMusic;
+/// 当前录音的场景
+@property (nonatomic, readonly) NSInteger scene;
+@property (nonatomic, readonly) NSInteger settingScene;
+/// 当前录音文件或同步(下载)文件的sessionId
+@property (nonatomic, readonly) NSInteger sessionId;
+/// 是否正在同步(下载)文件
+@property (nonatomic, readonly) BOOL isDownloading;
+/// 是否是切换WiFi导致的蓝牙断开
+@property (nonatomic, readonly) BOOL isWiFiOpen;
+/// 重复命令间隔,默认500ms
+/// getFileList、syncFile、deleteFile三个命令特殊处理,加入sessionId和start来判断是否是重复命令
+@property (nonatomic) NSInteger repeatCommondInterval;
+/// 命令回调线程,默认是主线程
+@property (nonatomic, strong) dispatch_queue_t _Nonnull cmdDelegateQueue;
+/// 8e0b1ef62e607u38ad8200163e02394b acb89eea1e6011e8ad8200163e02394b
+/// 是不是处于U盘模式?
+@property (nonatomic) BOOL isUsbState;
+@property (nonatomic) BOOL isCharging;
+@property (nonatomic, copy) NSDictionary * _Nonnull flutterMapData;
+/// 密文包
+@property (nonatomic, copy) NSArray * _Nonnull secretPackages;
+/// 密文包索引
+@property (nonatomic) NSInteger secretIndex;
+/// 密文包数量
+@property (nonatomic) NSInteger secretCount;
+/// 密钥
+@property (nonatomic, copy) NSData * _Nullable chacha20Key;
+/// 随机数
+@property (nonatomic, copy) NSData * _Nullable chacha20Nonce;
+/// 认证数据
+@property (nonatomic, copy) NSData * _Nullable chacha20AD;
+/// WiFi 加密是否使用 AES-GCM(通过 newFeature 协商)
+@property (nonatomic) BOOL wifiUseAes;
+/// 全局发送给设备的序号
+@property (nonatomic) NSInteger globalSendSeq;
+/// 全局发送给设备的序号
+@property (nonatomic) NSInteger globalReceiveSeq;
+@property (nonatomic, copy) NSString * _Nonnull versionType;
+@property (nonatomic) NSInteger versionCode;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// WiFi传输是否打开?没有WiFi模块的不用关心
+/// \param connected 是否连接上了
+///
+- (void)setWiFiState:(BOOL)connected;
+/// 用户认证初始化(必须调用)
+/// \param appKey 跟包名绑定的key
+///
+/// \param bindToken 用于绑定录音笔,应该是账号唯一,建议使用服务器发下的openid
+///
+/// \param hkServer 是否使用HK服务器
+/// @see 回调见 bleAppKeyState、
+///
+- (void)setUserIdentifier:(NSString * _Nonnull)appKey :(NSString * _Nonnull)bindToken :(BOOL)hkServer;
+/// 初始化蓝牙,使用蓝牙相关接口之前调用(必须调用)
+- (void)initBluetooth SWIFT_METHOD_FAMILY(none);
+/// 会先断开连接然后centralManager置nil
+- (void)disInitBluetooth;
+/// 校验AppKey,第一次校验需要使用网络
+/// 该方法建议在AppDelegate中调用,校验成功才能时候后续功能
+/// \param appKey 跟包名绑定的key
+/// @see bleAppKeyState
+/// @deprecated 该方法废弃,由 setUserIdentifier()方法代替
+/// @note Flutter 路径使用 setUserIdentifier() 初始化,此方法不会被调用。
+///
+- (void)checkAppKey:(NSString * _Nonnull)appKey;
+/// 设置绑定录音笔的token
+/// token应该是账号唯一的,不会失效,最好是由服务器统一生成
+/// \param token
+/// @deprecated 该方法废弃,由 setUserIdentifier()方法代替
+/// @note Flutter 路径使用 setUserIdentifier() 初始化,此方法不会被调用。
+///
+- (void)setBinding:(NSString * _Nonnull)token;
+/// 设置扫描时的过滤名称
+/// 该方法设置后仅过滤一个蓝牙名称
+/// 如果设为nil,将显示所有符合协议的录音笔
+/// \param name 蓝牙名称
+/// @see setFilter(_ names: [String])
+///
+- (void)setFilterWithName:(NSString * _Nullable)name;
+/// 同时过滤多个
+/// 如果数组为空,将显示所有符合协议的录音笔
+/// \param names 蓝牙名称
+/// @see setFilter(name: String)
+///
+- (void)setFilter:(NSArray * _Nonnull)names;
+/// 打开sdk的调试日志,或者回调日志
+- (void)openLog:(BOOL)opened logBlock:(void (^ _Nullable)(NSString * _Nonnull))logBlock wlogBlock:(void (^ _Nullable)(NSString * _Nonnull))wlogBlock;
+/// 是不是连接着某个设备
+/// 蓝牙开着、连接着、绑定着并且bleDevice不为nil
+///
+/// returns:
+/// true or false
+- (BOOL)isDeviceConnect SWIFT_WARN_UNUSED_RESULT;
+/// 开始扫描
+/// @see startLoopScan()
+/// @see stopScan()
+/// @see 回调bleScanResult
+- (void)startScan;
+/// 开始一个循环扫描
+/// 内部会启动一个timer,每12秒扫描一次,直到连接上录音笔;断开连接后会重启timer
+/// app应该在在扫描的回调中去连接已绑定的设备
+/// @see startScan()
+/// @see stopScan()
+/// @see 回调bleScanResult
+/// @deprecated 该方法废弃,不建议使用
+- (void)startLoopScan;
+/// 结束扫描
+/// @see startLoopScan()
+/// @see startScan()
+- (void)stopScan;
+/// 连接蓝牙设备
+/// 不再支持自动连接,设备的版本号是在扫描的时候获取的,自动连接无法更新版本号,在录音笔升级后会有问题
+/// @see startLoopScan
+/// \param bleDevice 封装的蓝牙设备
+///
+/// \param devToken 扫码绑定传过来的笔端token,utf-8转成data后长度是8,非扫码绑定是8个0 (捷通的,其他客户不要传)
+///
+/// \param userName 用户名(捷通的,其他客户不要传)
+/// @see 回调bleConnectState
+/// @see 回调bleBind
+///
+- (void)connectBleDeviceWithBleDevice:(BleDevice * _Nonnull)bleDevice :(NSString * _Nullable)devToken :(NSString * _Nullable)userName :(BOOL)isForceClear;
+/// 断开蓝牙连接
+- (void)disconnect;
+/// 录音笔是不是临时校验的?
+- (BOOL)isSNTempChecked SWIFT_WARN_UNUSED_RESULT;
+/// 如果之前没有校验成功SN,重复校验
+- (void)reCheckSNIfNeed;
+/// 主动读取电池电量
+/// 这个是读的标准电池电量服务,某些情况下会不准
+/// 协议5以后自动改为getChargingState
+/// @see getChargingState
+/// @see 回调blePowerChange
+/// @see 回调bleChargingState
+- (void)readPower;
+/// 获取电池电量状态
+/// 协议5以后改用这个方法读取电量,readPower也会在协议5以后走这里
+/// @see 回调blePowerChange
+/// @see 回调bleChargingState
+- (void)getChargingState;
+/// 读取录音笔状态,返回state和隐私状态
+/// @see 回调blePenState
+- (void)getState;
+/// 取消配对,解绑
+/// \param clear 是否同时清空录音笔
+///
+- (void)depairWithClear:(BOOL)clear;
+/// 读取录音笔剩余空间
+/// @see 回调bleStorage
+- (void)getStorage;
+/// 重置笔端密码,用于多按键带屏项目,例如纽曼P23H
+/// @see 回调blePasswordReset
+- (void)appResetPassword;
+/// 读取背光时长
+/// 用于带屏非多按键项目 例如P23R1。
+/// @see setBacklightDuration
+/// @see 回调bleBacklightDuration
+- (void)readBacklightDuration;
+/// 设置背光时长
+/// 用于带屏非多按键项目 例如P23R1。
+/// \param type 时长的枚举 0: 10秒 1:20秒 2: 30秒 4: 始终亮屏
+/// @see readBacklightDuration
+/// @see 回调bleBacklightDuration
+///
+- (void)setBacklightDurationWithType:(NSInteger)type;
+/// 读取背光对比度
+/// 用于带屏非多按键项目 例如P23R1。
+/// @see setBacklightBright
+/// @see 回调bleBacklightBright
+- (void)readBacklightBright;
+/// 设置背光对比度
+/// 用于带屏非多按键项目 例如P23R1。
+/// \param type 对比度的枚举 1-6
+/// @see readBacklightBright
+/// @see 回调bleBacklightBright
+///
+- (void)setBacklightBrightWithType:(NSInteger)type;
+/// 带屏项目获取录音笔当前语言
+/// @see setLanguage
+/// @see 回调bleLanguage
+- (void)readLanguage;
+/// 带屏项目设置录音笔语言
+/// \param type 语言类型 0 简体中文 1 繁体中文 2 英语
+/// @see readLanguage
+/// @see 回调bleLanguage
+///
+- (void)setLanguageWithType:(NSInteger)type;
+/// 设置录音场景
+/// \param value 0 Unknown; 1 Normal; 2 Interview; 3 Classroom(Speech); 4 Music; 5 Meeting; 6 Memo
+///
+- (void)setRecSceneWithValue:(NSInteger)value;
+/// 获取录音场景
+/// @see 回调bleRecScene
+- (void)readRecScene;
+/// 设置录音模式
+/// \param value 1 Normal (正常,非降噪); 2 NC (降噪)
+///
+- (void)setRecModeWithValue:(NSInteger)value;
+/// 获取录音模式
+/// @see bleRecMode
+- (void)readRecMode;
+/// 设置 VAD 敏感度
+/// \param value 0:Quality 1:Low bitrate 2:Normal 3:Aggressive
+///
+- (void)setVadSensitivityWithSensitivity:(NSInteger)sensitivity;
+/// 获取 VAD 敏感度
+/// @see bleVadSensitivity
+- (void)readVadSensitivity;
+/// 设置 VPU 敏感度
+/// \param sensitivity 0:Low 1:Medium 2:High
+///
+- (void)setVpuGainWithGain:(NSInteger)gain;
+/// 获取 VPU 敏感度
+/// @see bleVpuGain
+- (void)readVpuGain;
+/// 设置麦克风增益
+/// \param value 麦克风增益值,范围 0 - 30
+///
+- (void)setMicGainWithValue:(NSInteger)value;
+/// 获取 VPU 敏感度
+/// @see bleVpuGain
+- (void)readBatteryMode;
+/// 续航模式
+/// \param value 0:普通,1:长续航
+///
+- (void)setBatteryModeWithValue:(NSInteger)value;
+/// 获取麦克风增益
+/// @see bleMicGain
+- (void)readMicGain;
+/// 设置 switch 开关功能
+/// \param id:0 通话场景切换;1 录音功能; 2 关机功能
+///
+- (void)setSwitchHandlerWithId:(NSInteger)id;
+/// 获取 switch 开关功能
+/// @see bleSwitchHandler
+- (void)readSwitchHandler;
+/// 设置 自动关机
+/// \param value:0:关闭 1:立即关机 2:15分钟 3:30分钟 4:1个小时 5:5个小时
+///
+- (void)setAutoPowerOffWithValue:(NSInteger)value;
+/// 获取 switch 开关功能
+/// @see bleSwitchHandler
+- (void)readAutoPowerOff;
+/// 设置 是否保存 wav 文件
+/// \param value:0:关闭 1:开启
+///
+- (void)setRawWaveEnabledWithValue:(NSInteger)value;
+/// 获取 wav 文件开关功能
+/// @see bleRawWaveEnabled
+- (void)readRawWaveEnabled;
+/// 获取 充电器拔出后开始录音 开关
+/// @see bleRecordingAfterDisConnetEnabled
+- (void)readRecordingAfterDisConnetEnabled;
+/// 设置 充电器拔出后开始录音 开关
+/// \param value:0:关闭 1:开启
+///
+- (void)setRecordingAfterDisConnetEnabledWithValue:(NSInteger)value;
+/// 获取 闲时同步 开关
+/// @see bleSyncWhenIdleEnabled
+- (void)readSyncWhenIdleEnabled;
+/// 设置 闲时同步 开关
+/// \param value:0:关闭 1:开启
+///
+- (void)setSyncWhenIdleEnabledWithValue:(NSInteger)value;
+/// 设置 设备 findmy 状态
+/// \param value
+/// 0:未绑定状态 - 关闭广播
+/// 1:未绑定状态 - 开启广播
+/// 2:绑定状态 - 可被查找
+/// 3:绑定状态 - 不可被查找
+///
+- (void)setFindMyStateWithValue:(NSInteger)value;
+/// 获取 设备 findmy 状态
+/// @see bleFindMyState
+- (void)readFindMyState;
+/// 设置 VPU CLK 矫正
+/// \param value 0:关闭 1:开启
+/// @see 回调 bleSetVpuCLK
+///
+- (void)setVPUCLKWithValue:(NSInteger)value;
+/// 读取 VPU CLK 矫正
+/// @see 回调 bleVpuCLK
+- (void)readVPUCLK;
+/// 设置充电器插入后自动停止录音
+/// \param value 0:关闭 1:开启
+/// @see 回调 bleStopRecordingAfterCharging
+///
+- (void)setStopRecordingAfterChargingWithValue:(NSInteger)value;
+/// 读取充电器插入后自动停止录音
+/// @see 回调 bleStopRecordingAfterCharging
+- (void)readStopRecordingAfterCharging;
+/// 设置 ble 名称
+/// \param name:设备新名字
+///
+- (void)setBleNameWithName:(NSString * _Nonnull)name;
+/// 获取设备文件列表
+- (void)getDeviceLogListWithLogType:(NSInteger)logType;
+/// 开始获取设备文件
+- (void)startSyncDeviceLogFileWithLogType:(NSInteger)logType;
+/// 停止获取设备文件列表
+- (void)stopSyncDeviceLogFile;
+/// 删除设备文件
+- (void)deleteDeviceLogFileWithLogType:(NSInteger)logType;
+/// 获取 ble 名称
+/// @see bleName
+- (void)readBleName;
+/// app端请求开启或者关闭wifi
+/// \param open 开启还是关闭
+///
+- (void)operateWiFiWithOpen:(BOOL)open isOTA:(BOOL)isOTA;
+/// 获取记录报表
+/// \param uid 区分连续请求
+///
+- (void)readGlassDataWithUid:(NSInteger)uid;
+/// 清空记录报表
+- (void)clearGlassData;
+/// 获取笔端保存的自动删除录音的状态值
+/// @see saveAutoClear
+/// @see 回调bleAutoClear
+- (void)readAutoClear;
+/// 保存自动清除录音状态
+/// 注意:录音笔仅保存该状态,方便账号同步设置状态,同步文件完成后是否删除笔端录音依然是app控制
+/// \param status 0 关闭 1 打开
+/// @see readAutoClear
+/// @see 回调bleAutoClear
+///
+- (void)saveAutoClear:(BOOL)open;
+/// 开始录音(录音速记)
+/// 如果开始录音成功,需要自己去syncFile同步文件
+/// 可以通过通过同步文件的偏移量显示实时录音时长
+/// \param scene 录音场景 1:会议 2:课堂 3:采访 4:音乐 5:备忘
+/// @see 回调bleRecordStart
+///
+- (void)startRecord:(NSInteger)scene;
+/// 结束当前录音
+/// @see 回调bleRecordStop
+- (void)stopRecord;
+/// 暂停录音
+/// 如果当前录音处于暂停状态,估计版本7之前通过@see startRecord()恢复录音,之后通过resumeRecord()恢复
+/// 录音笔协议7开始需要传sessionId,早期版本忽略
+/// @see 回调bleRecordPause
+- (void)pauseRecord:(NSInteger)sessionId;
+/// 恢复录音
+/// 协议版本7开始支持
+/// @see 回调bleRecordResume
+- (void)resumeRecord:(NSInteger)sessionId;
+/// 获取录音笔灯状态
+/// @see setLedState
+/// @see 回调bleLedState
+- (void)getLedState;
+/// 设置录音笔灯状态
+/// \param onOff 0 正常;1 关闭
+/// @see getLedState
+/// @see 回调bleSetLedState
+///
+- (void)setLedStateOnOff:(NSInteger)onOff;
+/// 获取会话列表(获取某个sessionId之后的文件列表)
+/// 该命令在录音状态下不可用
+/// 该命令在U盘模式下不可用
+/// \param uid 用于区分不同的命令
+///
+/// \param sessionId 从哪个文件开始同步?0 表示同步所有
+///
+/// \param onlyOne 如果真,那么只查询此sessionId对应的文件(实时录音结束后获取实时录音文件长度),默认false
+/// @see 回调bleFileList
+///
+- (void)getFileListWithUid:(NSInteger)uid sessionId:(NSInteger)sessionId onlyOne:(BOOL)onlyOne;
+/// 同步(下载)文件
+/// \param sessionId 录音文件的唯一id
+///
+/// \param start 录音文件起始位置(字节)
+///
+/// \param end 同步到哪?一搬传0,表示同步到文件尾(字节)
+///
+/// \param decode 是否同时返回解码后的数据
+/// @see 回调bleSyncFileHead
+/// @see 回调bleSyncFileTail
+/// @see 回调bleData
+/// @see 回调bleDecodeFail
+/// @see 回调bleDataComplete
+/// @see 回调blePcmData
+///
+- (void)syncFileWithSessionId:(NSInteger)sessionId start:(NSInteger)start end:(NSInteger)end decode:(BOOL)decode;
+/// 结束文件同步(下载)
+/// @see 回调bleSyncFileStop
+- (void)stopSyncFile;
+/// 删除录音笔中的文件
+/// \param sessionId 录音文件唯一id
+/// @see 回调bleDeleteFile
+///
+- (void)deleteFileWithSessionId:(NSInteger)sessionId;
+/// 获取录音打点数据
+/// \param sessionId 会话id
+///
+- (void)getMarking:(NSInteger)sessionId;
+/// 获取录音打点数据(3.0新协议)
+/// \param uid 请求uid
+///
+/// \param startTimestamp 起始时间戳
+///
+/// \param endTimestamp 结束时间戳
+///
+- (void)getRecordMarkingTagsWithUid:(NSInteger)uid startTimestamp:(NSInteger)startTimestamp endTimestamp:(NSInteger)endTimestamp;
+/// 通知录音笔有版本升级
+/// \param uid 命令区分标识
+///
+/// \param fromVersion 现在的版本 T0012 或者 V0012 这样的格式
+///
+/// \param toVersion 目标版本 T0012 或者 V0012 这样的格式
+///
+/// \param thirdVersion G101项目,其他填0
+///
+/// \param fileSize 升级包大小(字节)
+///
+/// \param crc 校验码
+/// @see 回调bleFotaResult
+/// @see 回调bleFotaPackReq
+///
+- (void)pushFotaInfo:(NSInteger)uid :(NSString * _Nonnull)fromVersion :(NSString * _Nonnull)toVersion :(NSInteger)thirdVersion :(NSInteger)fileSize :(NSInteger)crc;
+/// 通知录音笔有版本升级
+/// 目标版本一定要大于原版本
+/// \param uid 命令区分标识
+///
+/// \param fromVersion 原版本
+///
+/// \param fromVersionType 原版本类型
+///
+/// \param toVersion 目标版本
+///
+/// \param toVersionType 目标版本类型
+///
+/// \param fileSize 升级包大小(字节)
+///
+/// \param crc 校验码
+/// @see 回调bleFotaResult
+/// @see 回调bleFotaPackReq
+///
+- (void)pushFotaInfo:(NSInteger)uid :(NSInteger)fromVersion :(NSString * _Nonnull)fromVersionType :(NSInteger)toVersion :(NSString * _Nonnull)toVersionType :(NSInteger)thirdVersion :(NSInteger)fileSize :(NSInteger)crc;
+/// 告知录音笔文件已发送完
+/// \param uid 标识,区分命令
+///
+/// \param status 0 正常结束,1 用户退出 0XFF 未知原因
+///
+- (void)pushFotaComplete:(NSInteger)uid :(NSInteger)status;
+/// 发送ota数据包
+/// 不能一个循环就全发了,每个包要等一段时间
+/// 不同的手机不同的蓝牙版本,等待时长不一样,这个要实际测
+/// 目前我的iphone6是等待
+/// \param offset 偏移量(字节)
+///
+/// \param packData 数据包,注意控制单个数据包大小,不要超过最大长度(不同型号这个值是不一样的,保守的话就80)
+///
+- (void)pushFotaPack:(NSInteger)offset packData:(NSData * _Nonnull)packData postDelayUs:(NSNumber * _Nullable)postDelayUs;
+/// 能不能往不稳定栈里面push数据?
+- (BOOL)canSendWithoutResponse SWIFT_WARN_UNUSED_RESULT SWIFT_AVAILABILITY(ios,introduced=11.0);
+/// 恢复出厂设置
+/// 没有回调
+- (void)restoreFactory;
+/// 隐私设置
+/// 开启时,禁止笔端播放,禁止U盘功能,禁止笔端解除绑定
+/// \param onOff 1 开启;0 关闭
+/// @see getState
+/// @see 回调blePrivacy
+///
+- (void)setPrivacyOnOff:(NSInteger)onOff;
+/// 清空笔端所有文件
+/// @see 回调bleClearAllFile
+- (void)clearAllFile;
+/// 设备 休眠和唤醒
+/// \param onOff 1 唤醒;0 休眠
+///
+- (void)setDeviceActiveWithStatus:(NSInteger)status;
+/// 心跳
+/// \param status 0 ping, 1 pong
+///
+- (void)setHeartBeatWithStatus:(NSInteger)status;
+/// WiFi配网
+/// \param ssid WiFi名称
+///
+/// \param password 密码
+///
+/// \param isTest 是否使用测试环境
+///
+- (void)setWiFiSsidWithSsid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password isTest:(BOOL)isTest;
+/// App请求盒子端当前的配网状态
+- (void)getWiFiSsid;
+/// 获取固件升级信息
+/// \param callback errcode == 0 表示Http成功返回
+///
+- (void)getUpdateInfo:(void (^ _Nonnull)(NSInteger, UpdateInfo * _Nullable))callback;
+/// 设置服务器配置
+/// \param type 1 服务器url 2 服务器token 2 设备端token
+///
+/// \param content url最大63字节;serToken最大16字节;devToken最大16字节
+///
+- (void)setWebsocketProfileWithType:(NSInteger)type content:(NSString * _Nonnull)content;
+/// 获取服务器配置
+- (void)getWebsocketProfileWithType:(NSInteger)type;
+/// 服务器测试
+- (void)testWebsocket;
+/// 设置定时录音
+/// \param start 定时闹钟开始时间(UTC);0 表示关闭定时闹钟
+///
+/// \param duration 持续时长(单位s)
+///
+/// \param repeatMode 0 once仅一次; 1 daily每天定时; 2 weekly每周定时
+///
+- (void)setAlarmRecWithStart:(NSInteger)start duration:(NSInteger)duration repeatMode:(NSInteger)repeatMode;
+/// 获取定时录音
+- (void)getAlarmRec;
+/// 发送bin文件信息
+/// \param type 文件类型
+///
+/// \param totalSize 文件总大小
+///
+- (void)sendBinFileInfoWithType:(NSInteger)type totalSize:(NSInteger)totalSize;
+/// 发送bin文件数据
+/// \param type 文件类型
+///
+/// \param packageOffset 包偏移量
+///
+/// \param packageSize 包大小
+///
+/// \param data 包数据
+///
+- (void)sendBinFileDataWithType:(NSInteger)type packageOffset:(NSInteger)packageOffset packageSize:(NSInteger)packageSize data:(NSData * _Nonnull)data;
+/// 发送bin文件校验和结果
+/// \param type 文件类型
+///
+/// \param crc 校验和
+///
+- (void)sendBinFileCheckSumResultWithType:(NSInteger)type crc:(NSInteger)crc;
+/// 获取闲时同步 Wi-Fi 配置
+/// \param wifiIndex Wi-Fi 编号 (4 bytes)
+///
+- (void)getSyncInIdleWifiConfigWithWifiIndex:(uint32_t)wifiIndex;
+/// 设置闲时同步 Wi-Fi 配置
+/// \param operation 操作类型 1: 添加, 2: 变更)
+///
+/// \param wifiIndex Wi-Fi 编号 (4 bytes)
+///
+/// \param ssid Wi-Fi SSID
+///
+/// \param password Wi-Fi 密码
+///
+- (void)setSyncInIdleWifiConfigWithOperation:(NSInteger)operation wifiIndex:(uint32_t)wifiIndex ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password;
+/// 删除闲时同步 Wi-Fi 配置
+/// \param wifiIndices 要删除的 Wi-Fi 编号数组 (每个编号为 4 bytes)
+///
+- (void)deleteSyncInIdleWifiConfigWithWifiIndices:(NSArray * _Nonnull)wifiIndices;
+/// 重置 findmy 状态
+- (void)resetFindmy;
+/// 获取闲时同步 Wi-Fi 列表
+- (void)getSyncInIdleWifiList;
+/// 发起闲时同步 Wi-Fi 测试
+/// \param wifiIndex Wi-Fi 编号 (4 bytes)
+///
+- (void)setSyncInIdleWifiTestWithWifiIndex:(uint32_t)wifiIndex;
+/// 获取闲时同步 Wi-Fi 测试结果
+/// \param wifiIndex Wi-Fi 编号 (4 bytes)
+///
+- (void)getSyncInIdleWifiTestResultWithWifiIndex:(uint32_t)wifiIndex;
+/// 设置声加 license key
+/// \param licenseKey license key 字符串 (如果转换后少于 64 字节,将用 0 补足)
+///
+- (void)setSoundPlusTokenWithLicenseKey:(NSString * _Nonnull)licenseKey;
+/// 通用参数设置
+/// \param dataType 字符串类型(1: WiFi上云域名/ip, 2: findmy PPID)
+///
+/// \param value 字符串内容(UTF-8)
+///
+- (void)setCommonParamsWithDataType:(NSInteger)dataType value:(NSString * _Nonnull)value;
+/// 通用参数读取
+/// \param dataType 字符串类型(1: WiFi上云域名/ip, 2: findmy PPID)
+///
+- (void)getCommonParamsWithDataType:(NSInteger)dataType;
+/// 获取设备 SDFLASH CID
+- (void)getSDFLASHCID;
+/// 返回设备的NewFeature
+- (void)getNewFeature:(NSData * _Nonnull)data;
+/// 获取设备状态
+- (void)getDeviceStatus;
+@end
+
+
+
+/// pcm流式解码协议
+SWIFT_PROTOCOL("_TtP11PlaudBleSDK20JXPcmProcessDelegate_")
+@protocol JXPcmProcessDelegate
+/// 回调pcm数据
+/// \param sessionId 录音id
+///
+/// \param millSec 当前数据毫秒值(起始时刻毫秒值)
+///
+/// \param pcmData 纯音频已解码数据,长度是20ms
+///
+- (void)onPcmData:(NSInteger)sessionId :(NSInteger)millSec :(NSData * _Nonnull)pcmData;
+- (void)onDecodeErr:(NSInteger)millSec;
+@end
+
+
+@interface BleAgent (SWIFT_EXTENSION(PlaudBleSDK))
+- (void)onPcmData:(NSInteger)sessionId :(NSInteger)millSec :(NSData * _Nonnull)pcmData;
+- (void)onDecodeErr:(NSInteger)millSec;
+@end
+
+
+@class CBCentralManager;
+@class CBPeripheral;
+
+@interface BleAgent (SWIFT_EXTENSION(PlaudBleSDK))
+/// 判断手机蓝牙状态
+/// mark - sdk实现系统回调,app不要调用
+- (void)centralManagerDidUpdateState:(CBCentralManager * _Nonnull)central;
+/// 扫描到外围设备后去连接
+/// mark - sdk实现系统回调,app不要调用
+- (void)centralManager:(CBCentralManager * _Nonnull)central didDiscoverPeripheral:(CBPeripheral * _Nonnull)peripheral advertisementData:(NSDictionary * _Nonnull)advertisementData RSSI:(NSNumber * _Nonnull)RSSI;
+/// 连接成功
+/// mark - sdk实现系统回调,app不要调用
+- (void)centralManager:(CBCentralManager * _Nonnull)central didConnectPeripheral:(CBPeripheral * _Nonnull)peripheral;
+/// 连接失败
+/// mark - sdk实现系统回调,app不要调用
+- (void)centralManager:(CBCentralManager * _Nonnull)central didFailToConnectPeripheral:(CBPeripheral * _Nonnull)peripheral error:(NSError * _Nullable)error;
+/// 断开连接,尝试重连
+/// mark - sdk实现系统回调,app不要调用
+- (void)centralManager:(CBCentralManager * _Nonnull)central didDisconnectPeripheral:(CBPeripheral * _Nonnull)peripheral error:(NSError * _Nullable)error;
+@end
+
+
+@class NSURLSession;
+@class NSURLAuthenticationChallenge;
+@class NSURLCredential;
+
+@interface BleAgent (SWIFT_EXTENSION(PlaudBleSDK))
+- (void)URLSession:(NSURLSession * _Nonnull)session didReceiveChallenge:(NSURLAuthenticationChallenge * _Nonnull)challenge completionHandler:(void (^ _Nonnull)(NSURLSessionAuthChallengeDisposition, NSURLCredential * _Nullable))completionHandler;
+@end
+
+
+
+
+@interface BleAgent (SWIFT_EXTENSION(PlaudBleSDK))
+/// 授权是否成功
+- (BOOL)isAuthOk SWIFT_WARN_UNUSED_RESULT;
+/// 双声道转单声道
+/// \param pcmData 一个数据包,大小应该是1280
+///
+- (NSData * _Nonnull)toSingleChannel:(NSData * _Nonnull)pcmData SWIFT_WARN_UNUSED_RESULT;
+@end
+
+@class BleFile;
+@class BleRecordMarkingTag;
+
+/// 代理
+SWIFT_PROTOCOL("_TtP11PlaudBleSDK16BleAgentProtocol_")
+@protocol BleAgentProtocol
+/// 升级时电量不足(
+/// 在pushFotaInfo的时候检查(电量在40以下不允许升级)
+- (void)bleUpdatePowerLowErr;
+/// 未连接设备
+/// 发送命令前都会检查是不是正常连着设备
+- (void)bleDeviceDisconnectErr;
+/// 当录音笔处于U盘模式,调用getFileList/startRecord/syncFile/deleteFile/pushFotaInfo等方法时回调此异常
+/// 录音笔初次连接,需要app调用getState获取录音笔状态
+/// \param funcName U盘模式下不支持的方法名
+///
+- (void)bleUDiskErrWithFuncName:(NSString * _Nonnull)funcName;
+/// appKey校验结果
+/// \param result 校验结果 0 临时 1 成功 2 失败
+///
+- (void)bleAppKeyStateWithResult:(NSInteger)result;
+/// 蓝牙状态回调
+/// \param powered 是否可用?
+///
+- (void)bleStateWithPowered:(BOOL)powered;
+@optional
+/// 蓝牙连接阶段回调
+/// \param sn 序列号(Serial Number),当前连接设备的唯一标识
+///
+/// \param stage 当前连接阶段,对应 ConnectStage 枚举的取值
+///
+/// \param detail 关于当前连接阶段的可选补充说明信息
+///
+- (void)bleConnectStageWithSn:(NSString * _Nullable)sn stage:(NSString * _Nonnull)stage detail:(NSString * _Nullable)detail;
+@required
+/// 蓝牙连接状态
+///
+/// -
+/// Parameters state: 0 断开连接或者未连接;1 连接成功;2 连接失败
+///
+///
+- (void)bleConnectStateWithState:(NSInteger)state;
+/// 扫描蓝牙设备回调
+/// \param bleDevices 蓝牙设备列表
+///
+- (void)bleScanResultWithBleDevices:(NSArray * _Nonnull)bleDevices;
+/// 扫描超时结束
+/// @see startScan
+- (void)bleScanOverTime;
+/// 等待用户确认
+/// \param timeout 超时时长,单位秒
+///
+- (void)bleHandshakeWaitWithTimeout:(NSInteger)timeout;
+/// 连接的回调
+/// \param status 状态,0:成功,>0:拒绝 1:Token不匹配 2: 带屏的项目,正在录音,用户暂时无法确认 3:带屏的项目,用户手动拒绝 255:录音笔不在连接模式,非连接模式下拒绝握手请求(黑黎三段式开关特有) <0 校验失败 -1: 没有SSN -2:网络异常 -3 : 服务器数据异常或校验不正确
+///
+/// \param protVersion 协议版本号
+///
+/// \param timezone 笔端当前时区
+///
+- (void)bleBindWithSn:(NSString * _Nullable)sn status:(NSInteger)status protVersion:(NSInteger)protVersion timezone:(NSInteger)timezone;
+/// 设备名称
+/// \param name 设备名称
+///
+- (void)bleDeviceNameWithName:(NSString * _Nullable)name;
+/// 心跳消息
+/// \param status 0 ping,1 pong,
+///
+- (void)bleHeartbeatWithStatus:(NSInteger)status;
+/// 电池电量改变
+/// \param power 现在的电量
+///
+/// \param oldPower 之前的电量(用于判断从20%->19%以及10%->9%低电提醒)
+///
+- (void)blePowerChangeWithPower:(NSInteger)power oldPower:(NSInteger)oldPower;
+/// 电池电量状态
+/// \param isCharging 是否插入充电器 0 未插入 1 插入 (BleDevice中有一个isCharging,会在该回调之后设置,可以比较前值,判断充电状态的改变)
+///
+/// \param level 电量 0-100
+///
+- (void)bleChargingStateWithIsCharging:(BOOL)isCharging level:(NSInteger)level;
+/// 返回状态
+/// \param state 根据项目自定义 (4099(0x00001003) 表示录音笔正在录音, 1好像是录音中)
+///
+/// \param privacy 隐私设置状态
+///
+/// \param keySatte 拨动开光状态(协议版本4新增)
+///
+/// \param uDisk U盘是否启用
+/// 另外两个参数直接放在BleAgent中
+///
+/// \param scene 当前录音场景(没在录音是0)
+///
+/// \param findMyToken findmy token 是否存在(NotePin 设备)
+///
+/// \param hasSndpKey 声加 license token 是否存在
+///
+/// \param deviceAccessToken 设备闲时同步的 AccessToken 是否存在
+///
+/// \param sessionId 当前会话id(没在录音时为0)
+///
+- (void)blePenStateWithState:(NSInteger)state privacy:(NSInteger)privacy keyState:(NSInteger)keyState uDisk:(NSInteger)uDisk findMyToken:(NSInteger)findMyToken hasSndpKey:(NSInteger)hasSndpKey deviceAccessToken:(NSInteger)deviceAccessToken versionType:(NSString * _Nonnull)versionType versionCode:(NSInteger)versionCode;
+/// 同步时间的回调
+/// \param stamp GMT时间戳
+///
+/// \param timezone 时区
+///
+/// \param zoneMin 时区分钟部分
+/// 数据会保存在device实体类中,用于通过sessionId转换为时间戳
+///
+- (void)blePenTimeWithStamp:(NSInteger)stamp timezone:(NSInteger)timezone zoneMin:(NSInteger)zoneMin;
+/// 录音笔空间
+/// \param total 空间总大小(字节)
+///
+/// \param free 剩余空间大小(字节)
+///
+/// \param duration 录音笔估算的剩余录音时长(毫秒)
+///
+- (void)bleStorageWithTotal:(NSInteger)total free:(NSInteger)free duration:(NSInteger)duration;
+/// 重置密码
+/// \param password 重置后的初始密码
+///
+- (void)blePasswordResetWithPassword:(NSInteger)password;
+/// 读取获取设置背光时长的回调
+/// \param duration 时长的枚举 0: 10秒 1:20秒 2: 30秒 4: 始终亮屏
+///
+- (void)bleBacklightDuration:(NSInteger)duration;
+/// 读取或设置背光对比度(亮度)的回调
+/// \param bright 亮度的等级 1-6
+///
+- (void)bleBacklightBright:(NSInteger)bright;
+/// 语言
+/// \param type 0 简体中文 1 繁体中文 2 英语
+///
+- (void)bleLanguage:(NSInteger)type;
+/// 录音场景
+/// \param scene 0 Unknown; 1 Normal; 2 Interview; 3 Classroom(Speech); 4 Music; 5 Meeting; 6 Memo
+///
+- (void)bleRecScene:(NSInteger)scene;
+/// 录音模式
+/// \param mode 1 Normal (正常,非降噪); 2 NC (降噪)
+///
+- (void)bleRecMode:(NSInteger)mode;
+/// vad 灵敏度
+/// \param value 1:Quality; 2:Normal; 3:Aggressive
+///
+- (void)bleVadSensitivity:(NSInteger)value;
+/// 电池模式
+/// \param value 0:默认,1:长续航
+///
+- (void)bleBatteryMode:(NSInteger)value;
+/// vpu 灵敏度
+/// \param value 1:Low; 2:Medium; 3:High
+///
+- (void)bleVpuGain:(NSInteger)value;
+/// vpu 灵敏度
+/// \param value 1- 30
+///
+- (void)bleMicGain:(NSInteger)value;
+/// SWITCH开关功能
+/// \param id 0:通话场景切换 1:录音功能 2:关机功能
+///
+- (void)bleSwitchHandler:(NSInteger)id;
+/// 定时关机功能
+/// \param value 0:关闭 1:立即关机 2:15分钟 3:30分钟 4:1个小时 5:5个小时
+///
+- (void)bleAutoPowerOff:(NSInteger)value;
+/// 设备存储 raw wav 文件
+/// \param value 0:关闭 1:开启
+///
+- (void)bleRawWaveEnabled:(NSInteger)value;
+/// 充电器拔出后开始录音
+/// \param value 0:关闭 1:开启
+///
+- (void)bleRecordingAfterDisConnetEnabled:(NSInteger)value;
+/// 闲时同步
+/// \param value 0:关闭 1:开启
+///
+- (void)bleSyncWhenIdleEnabled:(NSInteger)value;
+/// findmy 状态
+/// \param value
+/// 0:未绑定状态 - 关闭广播
+/// 1:未绑定状态 - 开启广播
+/// 2:绑定状态 - 可被查找
+/// 3:绑定状态 - 不可被查找
+///
+- (void)bleFindMyState:(NSInteger)value;
+/// \param value
+/// 0:关闭
+/// 1:开启
+///
+- (void)bleVPUCLKState:(NSInteger)value;
+/// \param value
+/// 0:关闭
+/// 1:开启
+///
+- (void)bleStopRecordingAfterCharging:(NSInteger)value;
+/// 自动清除录音状态
+/// 注意:录音笔仅保存状态,是否在同步完录音后删除录音,app自行决定
+/// \param open 是否开启
+///
+- (void)bleAutoClear:(BOOL)open;
+/// vad开关状态
+/// \param open 是否开启
+///
+- (void)bleVad:(BOOL)open;
+/// 解绑
+/// \param status 0 成功 ;1 正在工作 2 正在升级
+///
+- (void)bleDepair:(NSInteger)status;
+/// WiFi开启通知
+/// \param status 0 正常,>1 禁止开启 1 录音状态,2 U盘状态
+///
+/// \param wifiName 录音笔热点名称
+///
+/// \param wholeName 判断是否要追加4位sn后的名称
+///
+/// \param wifiPass 录音笔热点密码
+///
+- (void)bleWiFiOpen:(NSInteger)status :(NSString * _Nonnull)wifiName :(NSString * _Nonnull)wholeName :(NSString * _Nonnull)wifiPass;
+/// WiFi关闭通知
+/// \param status 0 成功 1 wifi没有开启
+///
+- (void)bleWiFiClose:(NSInteger)status;
+/// WiFi配网结果
+/// \param status 0 成功; 1 参数长度不对
+///
+- (void)bleSetWiFiSsidWithStatus:(NSInteger)status;
+/// WiFi配网查询结果
+/// \param status 0 连接中
+///
+/// \param ssid wifi
+///
+- (void)bleGetWiFiSsidWithStatus:(NSInteger)status ssid:(NSString * _Nullable)ssid;
+/// 录音声音异常提醒
+/// \param status 0 正常 1 敲击/声音截幅 2 声音过大 3 声音太小 4 噪音太大
+///
+- (void)bleVoiceAbnormalWithStatus:(NSInteger)status;
+/// 设置或者获取服务器配置
+/// \param type 1 服务器url 2 服务器token 3 设备端token
+///
+/// \param conent url / serToken / devToken
+///
+- (void)bleWebsocketProfile:(NSInteger)type :(NSString * _Nullable)conent;
+/// 服务器测试
+/// \param status 0 成功;1 未扫描到AP 2 AP密码错误 3 websocket连接失败
+///
+- (void)bleWebsocketTest:(NSInteger)status;
+/// 开始录音的回调
+/// \param sessionId 录音文件唯一id,0时区时间戳,换成手机当前时间戳需要减掉时区
+///
+/// \param start 已录音时长(文件偏移量,字节)(如果之前不在录音,返回0;如果之前在录音,返回已录音的时长)
+///
+/// \param status 0:成功,>0:失败 1:空间已满;2:U盘模式;3:硬件异常;4:当前正忙; 255:模式不对(录音笔不在录音模式,黑黎三段式开关特有)
+///
+/// \param scene 录音模式(依项目、版本号而定)
+///
+/// \param startTime 开始时间(依项目、版本号而定)
+///
+- (void)bleRecordStartWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime;
+/// 结束录音的回调
+/// \param sessionId 录音文件唯一id,0时区时间戳,换成手机当前时间戳需要减掉时区
+///
+/// \param reason 原因(其余未定义)
+/// 1.MMI_REC_STOP_FROM_DEV /// 设备端停止录音
+/// 2.MMI_REC_STOP_FROM_APP /// APP端停止录音
+/// 3.MMI_REC_STOP_BY_SPLIT /// 自动时间切片停止录音
+/// 4.MMI_REC_STOP_BY_SWITCH /// switch开关切换停止录音 )
+///
+/// \param fileExist 文件是否保存
+///
+/// \param fileSize 文件大小(如果有的话,字节)
+///
+- (void)bleRecordStopWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize;
+/// 录音暂停的回调
+/// \param sessionId 录音文件唯一id,0时区时间戳,换成手机当前时间戳需要减掉时区
+///
+/// \param reason 原因(目前未定义)
+///
+/// \param fileExist 文件是否保存
+///
+/// \param fileSize 文件大小(如果有的话,字节)
+///
+- (void)bleRecordPauseWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize;
+/// 录音恢复(固件版本7开始)
+/// \param sessionId 录音文件唯一id,0时区时间戳,换成手机当前时间戳需要减掉时区
+///
+/// \param start 已录音时长(文件偏移量,字节)(如果之前不在录音,返回0;如果之前在录音,返回已录音的时长)
+///
+/// \param status 0:成功,>0:失败 1:空间已满;2:U盘模式;3:硬件异常
+///
+/// \param scene 录音模式(依项目、版本号而定)
+///
+/// \param startTime 开始时间(依项目、版本号而定)
+///
+- (void)bleRecordResumeWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime;
+/// 获取录音灯效
+- (void)bleLedStateOnOff:(NSInteger)onOff;
+/// 设置录音灯效
+- (void)bleSetLedStateOnOff:(NSInteger)onOff;
+/// 获取文件列表的回调
+/// \param bleFiles 文件列表
+///
+- (void)bleFileListWithBleFiles:(NSArray * _Nonnull)bleFiles;
+/// 同步(下载)文件开始的回调
+/// \param sessionId 文件唯一id
+///
+/// \param status 状态,0:成功;>0:失败 1:文件系统当前不可用 2:文件不存在 3: 被打断
+///
+- (void)bleSyncFileHeadWithSessionId:(NSInteger)sessionId status:(NSInteger)status;
+/// 同步(下载)文件结束
+/// \param sessionId 文件唯一id
+///
+/// \param crc 文件校验码,校验文件完整性(录音笔改为egg保存文件后不要用)
+///
+- (void)bleSyncFileTailWithSessionId:(NSInteger)sessionId crc:(NSInteger)crc;
+/// 返回录音打点数据
+/// \param sessionId 会话id
+///
+/// \param status 状态 0 正常 1 当前文件系统不可用
+///
+/// \param markList 打点数据
+///
+- (void)bleMarkingWithSessionId:(NSInteger)sessionId status:(NSInteger)status markList:(NSArray * _Nonnull)markList;
+/// 返回录音打点数据(3.0新协议)
+/// \param uid 请求uid
+///
+/// \param totals 总条数
+///
+/// \param index 当前包索引
+///
+/// \param tags 打点数据列表,包含时间戳、类型、状态和保留字段
+///
+- (void)bleGetRecordMarkingTagsWithUid:(NSInteger)uid totals:(NSInteger)totals index:(NSInteger)index tags:(NSArray * _Nonnull)tags;
+/// 角度上报
+/// \param pitchAngle 俯仰角 -180~180
+///
+/// \param rollbackAngle 回滚角 -180~180
+///
+/// \param yawAngle 偏航角 -180~180
+///
+- (void)bleAnglesWithPitchAngle:(float)pitchAngle rollbackAngle:(float)rollbackAngle yawAngle:(float)yawAngle;
+/// 数据接收完了
+- (void)bleDataComplete;
+/// 语音数据返回
+/// \param sessionId 文件的id,协议7支持
+///
+/// \param start 数据在未解码文件中的偏移量(字节)
+///
+/// \param data 数据(可能是ogg数据也可能是opus纯音频,由固件决定)
+///
+- (void)bleDataWithSessionId:(NSInteger)sessionId start:(NSInteger)start data:(NSData * _Nonnull)data;
+/// log文件数据下载
+/// \param start 当前数据包偏移量
+///
+/// \param data 数据包
+///
+- (void)deviceLogDataWithStart:(NSInteger)start data:(NSData * _Nonnull)data logType:(NSInteger)logType;
+/// 返回解码后的pcm数据
+/// \param sessionId 文件的id,协议7支持
+///
+/// \param millsec 当前语言毫秒值
+///
+/// \param pcmData 解码后的数据,如果开始录音的时候没有要求解码,不会回调;如果录音是双声道,这里会处理为单声道;音乐模式是双声道48k采样率,会处理成单声道48k,不可用于识别
+///
+/// \param isMusic 是不是音乐模式?音乐模式返回的pcm不是正常的pcm,是6个short取一个,用于生成声波,不能用于识别
+///
+- (void)blePcmDataWithSessionId:(NSInteger)sessionId millsec:(NSInteger)millsec pcmData:(NSData * _Nonnull)pcmData isMusic:(BOOL)isMusic;
+/// 语音数据解码失败
+/// \param start 数据在未解码文件中的偏移量
+///
+- (void)bleDecodeFailWithStart:(NSInteger)start;
+/// 同步文件终止
+- (void)bleSyncFileStop;
+/// 删除文件
+/// \param sessionId 协议版本7支持
+///
+/// \param status 状态,0:删除成功;1:正在录音不允许删除 2: 已收藏不允许删除; 3: 正在播放不允许删除
+///
+- (void)bleDeleteFileWithSessionId:(NSInteger)sessionId status:(NSInteger)status;
+/// ota通知
+/// \param uid 标识
+///
+/// \param status 状态 0 正常,1. 升级失败 2. 版本信息不匹配 3.FLASH写失败 4.文件太大 5.尝试次数过多 6. U盘模式;7.正在录音; 8. U盘剩余空间不足; 9. 正在工作中; 10. G101眼镜仅在充电模式允许升级;11. G101眼镜电池电量不足;12. G101眼镜收到升级协议并准备调整到OTA_MODE; 255:模式不对(录音笔不在录音模式,黑黎三段式开关特有)
+///
+/// \param errmsg 协议版本4,如果升级成功,这里返回升级后的版本;如果失败,依然返回错误信息。
+///
+- (void)bleFotaResultWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg;
+/// ota包请求,录音笔请求发送升级包数据
+/// \param uid 标识
+///
+/// \param start 开始位置(字节)
+///
+/// \param end 结束位置(字节)
+///
+- (void)bleFotaPackReqWithUid:(NSInteger)uid start:(NSInteger)start end:(NSInteger)end;
+/// ota包接收完成
+/// \param uid 标识
+///
+/// \param status 状态 0 正常,1. 升级失败 2. 版本信息不匹配 3.FLASH写失败 4.文件太大 5尝试次数过多 6. U盘模式;7.正在录音; 8. U盘剩余空间不足
+///
+/// \param errmsg 协议版本4,如果升级成功,这里返回升级后的版本;如果失败,依然返回错误信息。
+///
+- (void)bleFotaPackFinWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg;
+/// ota数据发送失败
+- (void)bleOtaDataSendFail;
+/// 蓝牙传输速率的回调
+/// \param lossRate 丢包率
+///
+/// \param rate 平均速率,字节/S
+///
+/// \param instantRate 实时速率
+///
+- (void)bleRateWithLossRate:(double)lossRate rate:(NSInteger)rate instantRate:(NSInteger)instantRate;
+/// 隐私设置
+/// 开启时,禁止笔端播放,禁止U盘功能,禁止笔端解除绑定
+- (void)blePrivacyWithPrivacy:(NSInteger)privacy;
+/// 清空笔端所有文件
+/// 0:删除成功;1:正在录音文件不允许删除;2:已收藏不允许删除; 3:正在播放文件不允许删除;4:U盘模式
+- (void)bleClearAllFileWithStatus:(NSInteger)status;
+/// 设备状态读取
+/// status[4]:4字节状态数组,包含设备状态位信息
+/// 原始数据格式:32位状态值,每个位代表一个状态
+/// 已知状态位定义:
+/// bit0: BLE文件传输, bit1: WiFi快传, bit2: WiFi测试中, bit3: 有线传输中
+/// bit4: U盘模式中, bit5: wifi上云中, bit6: pan上云中, bit7: BLEota下载中
+/// bit8: WiFiota下载中, bit9: OTA升级中
+/// 注意:返回原始数据,应用层可自行解析,支持设备后续新增状态位
+- (void)bleDeviceStatusWithStatus:(NSArray * _Nonnull)status;
+/// 设备支持的feature功能
+- (void)bleNewFeatureWithData:(NSData * _Nonnull)data;
+/// 定时录音
+/// \param start 开始时间(UTC); 0 表示关闭定时录音
+///
+/// \param duration 录音时长(单位s)
+///
+/// \param repeatMode 0 once仅一次有效; 1 daily每天; 2 weekly每周
+///
+- (void)bleAlarmRecWithStart:(NSInteger)start duration:(NSInteger)duration repeatMode:(NSInteger)repeatMode;
+/// 唤醒、休眠设置
+/// 0:休眠;1:唤醒
+- (void)bleSetActiveWithStatus:(NSInteger)status;
+/// binaryFile基础信息同步 - FindMy Token
+/// \param type 文件扩展类型(长度 1 byte)
+///
+/// \param packageOffset 文件读取偏移值(4byte)
+///
+/// \param packageSize 请求获取一段数据的大小(2byte)
+///
+/// \param endStatus 文件结束,0还需要数据;(1byte)
+///
+- (void)onBinaryFileReqWithType:(NSInteger)type packageOffset:(NSInteger)packageOffset packageSize:(NSInteger)packageSize endStatus:(NSInteger)endStatus;
+/// 发送二进制数据 - FindMy Token 设置
+/// \param result 成功 0 /(失败1或者其他原因)(1byte)
+///
+- (void)onBinaryFileEndWithResult:(NSInteger)result;
+/// 闲时同步 WiFi 配置接收
+/// \param index WiFi 编号 (4 bytes)
+///
+/// \param ssid WiFi SSID
+///
+/// \param password WiFi 密码
+///
+- (void)onSyncIdleWifiConfigReceivedWithIndex:(uint32_t)index ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password;
+/// 设置闲时同步 WiFi 配置结果
+/// \param result 结果代码 (0: 成功, 1: 已存在, 2: 未找到删除设备, 3: 未找到变更, 4: 操作码异常, 5: 队列已满, 其他: 其他错误)
+///
+- (void)onSyncIdleWifiConfigSetWithResult:(NSInteger)result;
+/// 闲时同步 WiFi 列表接收
+/// \param list WiFi 索引列表
+///
+- (void)onSyncIdleWifiListReceivedWithList:(NSArray * _Nonnull)list;
+/// 闲时同步 WiFi 删除结果
+/// \param result 结果代码 (0: 成功, -1: 失败)
+///
+- (void)onSyncIdleWifiDeleteResultWithResult:(NSInteger)result;
+/// 闲时同步 WiFi 测试开始
+/// \param index WiFi 编号
+///
+- (void)onSyncIdleWifiTestStartedWithIndex:(uint32_t)index;
+/// 闲时同步即将开始开始
+/// \param second 即将开始的秒数
+///
+- (void)onSyncIdleWillStartWithSeconds:(NSInteger)seconds;
+/// 闲时同步 WiFi 测试结果
+/// \param index WiFi 编号
+///
+/// \param result 测试结果:0, 测试成功 1,未找到wifi 2,Wifi密码不正确 3,Wifi连接失败 4,数据传输失败
+///
+/// \param rawCode 原始错误码
+///
+- (void)onSyncIdleWifiTestResultWithIndex:(uint32_t)index result:(NSInteger)result rawCode:(NSInteger)rawCode;
+/// 重置 findmy 状态结果
+/// \param result 测试结果:0, 测试成功 1,未找到wifi 2,Wifi密码不正确 3,Wifi连接失败 4,数据传输失败
+///
+- (void)onResetFindmyResultWithResult:(NSInteger)result;
+/// 通用参数设置结果
+/// \param success 是否成功
+///
+/// \param dataType 字符串类型(1: WiFi上云域名/ip, 2: findmy PPID)
+///
+/// \param value 返回的字符串内容(失败时可能为空)
+///
+- (void)onCommonParamsSetResultWithSuccess:(BOOL)success dataType:(NSInteger)dataType value:(NSString * _Nullable)value;
+/// 通用参数读取结果
+/// \param success 是否成功
+///
+/// \param dataType 字符串类型(1: WiFi上云域名/ip, 2: findmy PPID)
+///
+/// \param value 返回的字符串内容(失败时可能为空)
+///
+- (void)onCommonParamsGetResultWithSuccess:(BOOL)success dataType:(NSInteger)dataType value:(NSString * _Nullable)value;
+- (void)onSetSoundPlusTokenResultWithLicenseKey:(NSString * _Nonnull)licenseKey;
+- (void)onGetSDFlashCIDResultWithCid:(NSString * _Nonnull)cid;
+- (void)onGetDeviceLogListWithData:(NSData * _Nonnull)data;
+- (void)onSyncDeviceLogStartWithData:(NSData * _Nonnull)data;
+- (void)onSyncDeviceLogStop;
+- (void)onSyncDeviceLogEndWithData:(NSData * _Nonnull)data;
+- (void)onDeviceLogDeletedWithData:(NSData * _Nonnull)data;
+@end
+
+
+SWIFT_CLASS("_TtC11PlaudBleSDK9BleDevice")
+@interface BleDevice : NSObject
+/// 录音笔的名称
+@property (nonatomic, copy) NSString * _Nonnull name;
+/// uuid
+@property (nonatomic, copy) NSString * _Nonnull uuid;
+/// 蓝牙信号强度
+@property (nonatomic) float rssi;
+/// 厂商类型,MTK或Nordic
+@property (nonatomic, copy) NSString * _Nonnull manufacturer;
+/// 项目代码
+@property (nonatomic) NSInteger projectCode;
+/// 版本类型,T或V
+@property (nonatomic, copy) NSString * _Nonnull versionTypeStr;
+/// 版本号
+@property (nonatomic) NSInteger versionCode;
+/// SN,设备唯一编号
+@property (nonatomic, copy) NSString * _Nonnull serialNumber;
+/// 绑定状态 0 未绑定,1 已绑定
+@property (nonatomic) NSInteger bindCode;
+/// 设备电池电量
+@property (nonatomic) NSInteger power;
+/// 设备是否正在充电
+@property (nonatomic) BOOL isCharging;
+/// 空间总大小
+@property (nonatomic) NSInteger total;
+/// 设备剩余空间
+@property (nonatomic) NSInteger free;
+/// 录音笔估算的剩余录音时长
+@property (nonatomic) NSInteger duration;
+/// 设备当前时区
+@property (nonatomic) NSInteger timezone;
+/// 时区的分钟部分
+@property (nonatomic) NSInteger zoneMin;
+/// 声道数
+@property (nonatomic) NSInteger channels;
+/// 是否支持WiFi
+@property (nonatomic) BOOL supportWiFi;
+/// 是否需要App端做降噪、增益
+@property (nonatomic) BOOL nsAgc;
+/// 同步的是ogg完整数据还是纯音频opus?
+@property (nonatomic) BOOL isOgg;
+/// 是否在同步完语音数据后删除录音笔中的文件
+@property (nonatomic) NSInteger autoClear;
+/// 是否隐蔽录音
+@property (nonatomic) NSInteger hideLed;
+/// 根据项目自定义 (4099(0x00001003) 表示录音笔正在录音)
+@property (nonatomic) NSInteger state;
+/// 是否开启隐私设置 1 开启;0 关闭
+@property (nonatomic) NSInteger privacy;
+/// 拨动开光状态, 0 无状态 1 录音状态 2 闲置状态
+/// Plaud:3 Switch on 4 Switch off
+@property (nonatomic) NSInteger keyState;
+/// U盘是否启用, 0 未启用 1 已启用
+@property (nonatomic) NSInteger uDisk;
+/// finmy token 是否存在,0 不存在,1 存在
+@property (nonatomic) NSInteger findmyToken;
+/// 是否有升级包(通过http访问服务器获取,放在这里方便使用)
+@property (nonatomic) BOOL hasFota;
+/// 判断是否要添加四位SN后的名称
+@property (nonatomic, readonly, copy) NSString * _Nonnull wholeName;
+/// WiFi热点的名字
+@property (nonatomic, readonly, copy) NSString * _Nonnull wifiName;
+- (nonnull instancetype)initWithSn:(NSString * _Nonnull)sn OBJC_DESIGNATED_INITIALIZER;
+/// 版本号对外显示
+///
+/// returns:
+/// 版本号显示字符串
+- (NSString * _Nonnull)wholeVersion SWIFT_WARN_UNUSED_RESULT;
+- (NSString * _Nonnull)toString SWIFT_WARN_UNUSED_RESULT;
+/// 8:30 –> 83600+3060
+/// -2: 45 –> -23600-4560
+- (NSInteger)zoneSecond SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+@class CBService;
+@class CBCharacteristic;
+
+@interface BleDevice (SWIFT_EXTENSION(PlaudBleSDK))
+- (void)peripheral:(CBPeripheral * _Nonnull)peripheral didDiscoverServices:(NSError * _Nullable)error;
+- (void)peripheral:(CBPeripheral * _Nonnull)peripheral didDiscoverCharacteristicsForService:(CBService * _Nonnull)service error:(NSError * _Nullable)error;
+- (void)peripheral:(CBPeripheral * _Nonnull)peripheral didUpdateNotificationStateForCharacteristic:(CBCharacteristic * _Nonnull)characteristic error:(NSError * _Nullable)error;
+- (void)peripheral:(CBPeripheral * _Nonnull)peripheral didUpdateValueForCharacteristic:(CBCharacteristic * _Nonnull)characteristic error:(NSError * _Nullable)error;
+- (void)peripheral:(CBPeripheral * _Nonnull)peripheral didWriteValueForCharacteristic:(CBCharacteristic * _Nonnull)characteristic error:(NSError * _Nullable)error;
+@end
+
+
+/// 录音文件实例类
+SWIFT_CLASS("_TtC11PlaudBleSDK7BleFile")
+@interface BleFile : NSObject
+/// 录音设备的唯一标识(该录音属于哪个录音笔)
+@property (nonatomic, copy) NSString * _Nonnull sn;
+/// 录音笔中录音文件id,唯一
+@property (nonatomic) NSInteger sessionId;
+/// 文件大小
+@property (nonatomic) NSInteger size;
+/// 文件偏移量,即当前文件下载位置
+@property (nonatomic) NSInteger offset;
+/// 当前时区
+/// 笔端文件名是当地时间,如果要转成UTC时间,就需要把时区减掉
+@property (nonatomic) NSInteger timezone;
+/// 时区的分钟部分(部分国家地区会有带分钟的时区)
+@property (nonatomic) NSInteger zoneMin;
+/// 场景(协议7支持)
+@property (nonatomic) NSInteger scenes;
+/// 是否笔端收藏
+@property (nonatomic) NSInteger penCollect;
+/// 声道数
+@property (nonatomic) NSInteger channels;
+/// 是否需要App端降噪、增益
+@property (nonatomic) BOOL nsAgc;
+/// 传输的是ogg文件还是opus?
+@property (nonatomic) BOOL isOgg;
+/// 是不是音乐模式下的录音?
+@property (nonatomic, readonly) BOOL isMusic;
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// 初始化
+/// \param sessionId 文件唯一id
+///
+/// \param fileSize 文件大小,文件时长通过文件大小来计算
+///
+- (nonnull instancetype)init:(NSInteger)sessionId :(NSInteger)size OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)init:(NSString * _Nonnull)sn :(NSInteger)sessionId :(NSInteger)size OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)init:(NSString * _Nonnull)sn :(NSInteger)sessionId :(NSInteger)size :(NSInteger)channels :(BOOL)nsAgc OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)init:(NSString * _Nonnull)sn :(NSInteger)sessionId :(NSInteger)size :(NSInteger)scenes :(NSInteger)penCollect :(NSInteger)channels :(BOOL)nsAgc OBJC_DESIGNATED_INITIALIZER;
+/// 获取录音文件时长
+///
+/// returns:
+/// 时长,单位毫秒
+- (NSInteger)duration SWIFT_WARN_UNUSED_RESULT;
+/// ogg文件大小转时长(不会十分严谨,误差在100ms内)
+///
+/// returns:
+/// 时长,单位毫秒
+/// @depared 返回的是duration(),以后的版本会移除该方法
+- (NSInteger)oggDuration SWIFT_WARN_UNUSED_RESULT;
+- (NSString * _Nonnull)toString SWIFT_WARN_UNUSED_RESULT;
+/// 计算录音文件时长
+/// \param fileSize 文件大小
+///
+/// \param channel 声道数
+///
+/// \param isOgg 是不是ogg文件?
+///
+/// \param scenes 场景, 如果是会议模式(4),那么传输的是Wave,需要特殊处理
+///
+///
+/// returns:
+/// 时长,毫秒
++ (NSInteger)calculateDuration:(NSInteger)fileSize :(NSInteger)channel :(BOOL)isOgg :(NSInteger)scenes SWIFT_WARN_UNUSED_RESULT;
+@end
+
+
+@interface BleFile (SWIFT_EXTENSION(PlaudBleSDK))
+/// 深拷贝
+- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+/// 时区转秒
+- (NSInteger)zoneSecond SWIFT_WARN_UNUSED_RESULT;
+/// 通过sessionId(utc 0时区时间)和时区获取的本地时间戳
+- (NSInteger)utsStamp SWIFT_WARN_UNUSED_RESULT;
+@end
+
+
+/// 录音打点数据(3.0新协议)
+SWIFT_CLASS("_TtC11PlaudBleSDK19BleRecordMarkingTag")
+@interface BleRecordMarkingTag : NSObject
+@property (nonatomic, readonly) uint32_t timestamp;
+@property (nonatomic, readonly) uint8_t type;
+@property (nonatomic, readonly) uint8_t status;
+@property (nonatomic, readonly, copy) NSArray * _Nonnull reserved;
+- (nonnull instancetype)initWithTimestamp:(uint32_t)timestamp type:(uint8_t)type status:(uint8_t)status reserved:(NSArray * _Nonnull)reserved OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+
+
+/// 眼镜记录报表数据
+SWIFT_CLASS("_TtC11PlaudBleSDK9GlassData")
+@interface GlassData : NSObject
+@property (nonatomic) NSInteger year;
+@property (nonatomic) NSInteger month;
+@property (nonatomic) NSInteger day;
+@property (nonatomic) NSInteger time;
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)init:(uint16_t)year :(uint8_t)month :(uint8_t)day :(uint32_t)time OBJC_DESIGNATED_INITIALIZER;
+@end
+
+
+/// 眼镜专有数据的代理
+SWIFT_PROTOCOL("_TtP11PlaudBleSDK13GlassProtocol_")
+@protocol GlassProtocol
+/// 眼镜报表数据
+/// \param delFlag 删除次数统计
+///
+/// \param dataArr 报表数据
+///
+- (void)glassData:(NSInteger)delFlag :(NSArray * _Nonnull)dataArr;
+/// 清除报表数据
+/// \param status 0 成功;1 设备正在使用,删除失败
+///
+- (void)glassDataClear:(NSInteger)status;
+@end
+
+
+SWIFT_CLASS_NAMED("JXAvcDecoder")
+@interface JXAvcDecoder : NSObject
+/// 单声道单个包大小
+@property (nonatomic, readonly) NSInteger packSize;
+/// 双声道单个包大小
+@property (nonatomic, readonly) NSInteger twoChannelPackSize;
+/// 4声道单个包大小
+@property (nonatomic, readonly) NSInteger fourChannelPackSize;
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// 创建解码器
+/// \param channels 声道数,默认1
+///
+- (void)createDecoderIfNeed:(NSInteger)channels;
+/// 解码单个数据包
+/// 如果解码器异常或者被回收,会重新创建并初始化
+/// \param data 待解码数据,长度是 80 * channels
+///
+///
+/// returns:
+/// 解码后的数据
+- (NSData * _Nullable)decode:(NSData * _Nonnull)data :(NSInteger)channels SWIFT_WARN_UNUSED_RESULT;
+/// 释放解码器
+- (void)releaseDecoder;
+@end
+
+
+/// crc工具类
+/// 同步(下载)录音笔的文件,自己控制好偏移量拼接好,文件就不会错,crc是对不上的(笔端文件和发给app的不一样)
+/// 给录音笔下发差分升级包需要给录音笔传一个crc校验文件的完整性
+SWIFT_CLASS("_TtC11PlaudBleSDK11JXCrcHelper")
+@interface JXCrcHelper : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) JXCrcHelper * _Nonnull shared;)
++ (JXCrcHelper * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 获取文件的CRC校验码
+/// \param path 文件路径
+///
+///
+/// returns:
+/// 校验码,如果文件不存在,返回-1
+- (NSInteger)getCrcWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT;
+/// 校验文件CRC
+/// \param crc 笔端返回的crc值
+///
+/// \param path 文件路径
+///
+///
+/// returns:
+/// 文件是否完整
+- (BOOL)checkCrcWithCrc:(NSInteger)crc ofFile:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT;
+@end
+
+
+/// 音频解码、格式转换工具类
+SWIFT_CLASS("_TtC11PlaudBleSDK13JXFileDecoder")
+@interface JXFileDecoder : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) JXFileDecoder * _Nonnull shared;)
++ (JXFileDecoder * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// pcm转wav
+/// \param pcmPath pcm文件路径
+///
+/// \param wavPath wav文件路径
+///
+/// \param channels 声道数,默认1
+///
+/// \param simpleRate 采样率,默认16000
+///
+/// \param completionHandler 回调
+///
+- (void)pcmToWavWithPcmPath:(NSString * _Nonnull)pcmPath wavPath:(NSString * _Nonnull)wavPath channels:(uint32_t)channels simpleRate:(uint32_t)simpleRate completionHandler:(void (^ _Nonnull)(BOOL))completionHandler;
+/// 音乐模式下录制的音频,且一开始进行了实时录音的同步,那么wav头信息需要重新设置以下才能用普通播放器播放
+/// \param wavPath wav文件路径
+///
+/// \param channels 声道数,音乐模式是双声道
+///
+/// \param sampleRate 采样率,音乐模式是48000(48k)
+///
+- (void)resetWavHead:(NSString * _Nonnull)wavPath :(uint32_t)channels :(uint32_t)sampleRate;
+@end
+
+
+@interface JXFileDecoder (SWIFT_EXTENSION(PlaudBleSDK))
+/// 是否有未完成任务
+- (BOOL)hasAvcToWavTask SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)convertAvcToWavCancel;
+/// avc未解码数据转wav,如果有多个,会按照队列依次执行
+/// 实现改为了c语言
+/// \param avcPath 原始数据文件路径
+///
+/// \param wavPath wav文件路径
+///
+/// \param channels 声道数,默认1
+///
+/// \param ns_agc 是否做降噪、增益
+///
+/// \param clearUnfinished 如果任务队列中海油之前未完成的任务,会取消掉
+///
+/// \param completionHandler 完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)avcToWavWithAvcPath:(NSString * _Nonnull)avcPath wavPath:(NSString * _Nonnull)wavPath channels:(int32_t)channels ns_agc:(BOOL)ns_agc clearUnfinished:(BOOL)clearUnfinished completionHandler:(void (^ _Nonnull)(BOOL, NSInteger))completionHandler;
+@end
+
+
+@interface JXFileDecoder (SWIFT_EXTENSION(PlaudBleSDK))
+/// 是否有未完成任务
+- (BOOL)hasPcmToMp3Task SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)convertPcmToMp3Cancel;
+/// pcm录音文件转mp3,如果有多个,会按照队列依次执行
+/// 不知道为什么生成的mp3不能用AVAudioPlayer播放,用AVPlayer播放是可以的
+/// \param pcmPath pcm文件路径
+///
+/// \param mp3Path 要生成的MP3文件路径
+///
+/// \param clearUnfinished 如果任务队列中海油之前未完成的任务,会取消掉
+///
+/// \param quality 2 near-best quality, not too slow; 5 good quality, fast; 7 ok quality, really fast
+///
+/// \param channels 声道数,默认1
+///
+/// \param completionHandler 完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)pcmToMp3WithPcmPath:(NSString * _Nonnull)pcmPath mp3Path:(NSString * _Nonnull)mp3Path clearUnfinished:(BOOL)clearUnfinished quality:(int32_t)quality channels:(int32_t)channels completionHandler:(void (^ _Nonnull)(BOOL, NSInteger))completionHandler;
+@end
+
+
+@interface JXFileDecoder (SWIFT_EXTENSION(PlaudBleSDK))
+/// 是否有未完成任务
+- (BOOL)hasAvcToMp3Task SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)convertAvcToMp3Cancel;
+/// avc原始录音文件转mp3,如果有多个,会按照队列依次执行
+/// 不知道为什么生成的mp3不能用AVAudioPlayer播放,用AVPlayer播放是可以的
+/// \param avcPath avc原始录音文件路径
+///
+/// \param mp3Path 要生成的MP3文件路径
+///
+/// \param clearUnfinished 如果任务队列中还有之前未完成的任务,会取消掉
+///
+/// \param quality 2 near-best quality, not too slow; 5 good quality, fast; 7 ok quality, really fast
+///
+/// \param channels 声道数,默认1
+///
+/// \param ns_agc 是否要做降噪、增益
+///
+/// \param completionHandler 完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)avcToMp3WithAvcPath:(NSString * _Nonnull)avcPath mp3Path:(NSString * _Nonnull)mp3Path clearUnfinished:(BOOL)clearUnfinished quality:(int32_t)quality channels:(int32_t)channels ns_agc:(BOOL)ns_agc completionHandler:(void (^ _Nonnull)(BOOL, NSInteger))completionHandler;
+@end
+
+
+@interface JXFileDecoder (SWIFT_EXTENSION(PlaudBleSDK))
+/// 是否有未完成任务
+- (BOOL)hasOggToMp3Task SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)convertOggToMp3Cancel;
+/// ogg压缩mp3
+/// \param oggPath ogg文件路径
+///
+/// \param mp3Path mp3文件路径
+///
+/// \param channels ogg声道数
+///
+/// \param quality mp3音质 2 near-best quality, not too slow;5 good quality, fast;7 ok quality, really fast 默认7
+///
+/// \param callback 完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)oggToMp3:(NSString * _Nonnull)oggPath :(NSString * _Nonnull)mp3Path :(int32_t)channels :(int32_t)quality :(void (^ _Nonnull)(BOOL, NSInteger))callback;
+@end
+
+
+@interface JXFileDecoder (SWIFT_EXTENSION(PlaudBleSDK))
+/// 是否有未完成任务
+- (BOOL)hasOggMulToSingleTask SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)oggMulToSingleCancel;
+/// 多声道ogg转单声道ogg,多声道可以是单、双、四声道;
+/// 转后的ogg略小,可以谷歌浏览器播放
+/// \param mulPath 多声道ogg地址
+///
+/// \param singlePath 目标单声道地址
+///
+/// \param channels 多声道ogg声道数
+///
+/// \param callback 完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)oggMulToSingle:(NSString * _Nonnull)mulPath :(NSString * _Nonnull)singlePath :(int32_t)channels :(void (^ _Nonnull)(BOOL, NSInteger))callback;
+@end
+
+
+@interface JXFileDecoder (SWIFT_EXTENSION(PlaudBleSDK))
+- (BOOL)hasAvcToNoiseReductionWav SWIFT_WARN_UNUSED_RESULT;
+- (void)convertAvcToNoiseReductionWavCancel;
+/// avc未解码数据转wav,如果有多个,会按照队列依次执行
+/// 实现改为了c语言
+/// \param avcPath 原始数据文件路径
+///
+/// \param wavPath wav文件路径
+///
+/// \param channels 声道数,默认1
+///
+/// \param ns_agc 是否做降噪、增益
+///
+/// \param clearUnfinished 如果任务队列中海油之前未完成的任务,会取消掉
+///
+/// \param completionHandler 完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)avcToNoiseReductionWavWithAvcPath:(NSString * _Nonnull)avcPath wavPath:(NSString * _Nonnull)wavPath channels:(int32_t)channels sound_plus:(BOOL)sound_plus noiseReductionGain:(NSInteger)noiseReductionGain clearUnfinished:(BOOL)clearUnfinished completionHandler:(void (^ _Nonnull)(BOOL, NSInteger))completionHandler;
+@end
+
+
+@interface JXFileDecoder (SWIFT_EXTENSION(PlaudBleSDK))
+/// 是否有未完成任务
+- (BOOL)hasAvcToOggTask SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)convertAvcToOggCancel;
+- (void)oggToOpus:(NSString * _Nonnull)oggPath :(NSString * _Nonnull)opusPath :(int32_t)channels :(void (^ _Nonnull)(BOOL))callback;
+/// avc(opus)转ogg,网易云可以播放,思必驰、讯飞可以识别
+/// \param avcPath avc(opus)文件路径
+///
+/// \param oggPath 目标ogg文件路径
+///
+/// \param clearUnfinished 如果任务队列中海油之前未完成的任务,会取消掉
+///
+/// \param iflyToolongCut 讯飞超长截取,默认打开(最长限制到4小时59分50秒)
+///
+/// \param channels 声道数,默认1
+///
+/// \param targetChannels 目标声道数(双声道默认转成单声道,也可以指定为双声道, 单声道不能转双声道)
+///
+/// \param ns_agc 是否要做降噪、增益
+///
+/// \param callback 回调函数,完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)avcToOgg:(NSString * _Nonnull)avcPath :(NSString * _Nonnull)oggPath clearUnfinished:(BOOL)clearUnfinished :(BOOL)iflyToolongCut :(int32_t)channels :(int32_t)targetChannels :(BOOL)ns_agc :(void (^ _Nonnull)(BOOL, NSInteger))callback;
+@end
+
+
+@interface JXFileDecoder (SWIFT_EXTENSION(PlaudBleSDK))
+/// 是否有未完成任务
+- (BOOL)hasAvcToPcmTask SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)convertAvcToPcmCancel;
+/// avc文件转pcm
+/// \param avcPath avc/opus文件路径
+///
+/// \param pcmPath pcm文件路径
+///
+/// \param clearUnfinished 如果任务队列中还有之前未完成的任务,会取消掉
+///
+/// \param channels 声道数,默认1
+///
+/// \param ns_agc 是否要做降噪、增益
+///
+/// \param completionHandler 完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)avcToPcmWithAvcPath:(NSString * _Nonnull)avcPath pcmPath:(NSString * _Nonnull)pcmPath clearUnfinished:(BOOL)clearUnfinished channels:(int32_t)channels ns_agc:(BOOL)ns_agc completionHandler:(void (^ _Nonnull)(BOOL, NSInteger))completionHandler;
+/// ogg文件转pcm
+/// \param avcPath ogg文件路径
+///
+/// \param pcmPath pcm文件路径
+///
+/// \param clearUnfinished 如果任务队列中还有之前未完成的任务,会取消掉
+///
+/// \param channels 声道数,默认1
+///
+/// \param ns_agc 是否要做降噪、增益
+///
+/// \param completionHandler 完成是 true 100;失败是 false -1; 进度是 fale 0-100
+///
+- (void)oggToPcmWithAvcPath:(NSString * _Nonnull)avcPath pcmPath:(NSString * _Nonnull)pcmPath clearUnfinished:(BOOL)clearUnfinished channels:(int32_t)channels ns_agc:(BOOL)ns_agc completionHandler:(void (^ _Nonnull)(BOOL, NSInteger))completionHandler;
+@end
+
+
+/// 声波文件生成工具类
+SWIFT_CLASS("_TtC11PlaudBleSDK15JXFileSoundWave")
+@interface JXFileSoundWave : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) JXFileSoundWave * _Nonnull shared;)
++ (JXFileSoundWave * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 是否有未完成任务
+- (BOOL)hasAvcToSoundWaveTask SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)generateSoundWaveCancel;
+/// 录音文件获取声波
+/// \param filePath 录音文件路径
+///
+/// \param channels 声道数
+///
+/// \param isOgg 是ogg还是opus/avc?
+///
+/// \param isMusic 是不是音乐模式
+///
+/// \param callback 回调
+///
+- (void)createSoundWave:(NSString * _Nonnull)filePath :(NSInteger)channels :(BOOL)isOgg :(BOOL)isMusic :(void (^ _Nonnull)(BOOL, NSInteger))callback;
+/// 录音文件生成声波
+/// \param avcPath 未解码文件路径
+///
+/// \param channels 声道数,默认是1
+///
+/// \param completionHandler 回调结果和进度
+///
+- (void)avcToSoundWaveWithAvcPath:(NSString * _Nonnull)avcPath channels:(NSInteger)channels completionHandler:(void (^ _Nonnull)(BOOL, NSInteger))completionHandler;
+@end
+
+
+/// 用于流式解码opus以及ogg数据,ogg只能是从录音笔同步的ogg,其他外部协议的不支持
+SWIFT_CLASS("_TtC11PlaudBleSDK12JXPcmProcess")
+@interface JXPcmProcess : NSObject
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 单例
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) JXPcmProcess * _Nonnull shared;)
++ (JXPcmProcess * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+/// 协议
+@property (nonatomic, weak) id _Nullable delegate;
+/// 回调线程,默认主线程
+@property (nonatomic, strong) dispatch_queue_t _Nonnull callbackQueue;
+/// 重置,开始接收数据前必须重置
+/// \param sessionId 录音id(@see BleFile)
+///
+/// \param channel 声道数(@see BleDevice)
+///
+/// \param isOgg 是ogg还是opus纯音频未解码数据(@see BleDevice)
+///
+/// \param nsAgc 是否需要降噪增益(@see BleDevice)
+///
+- (void)resetWith:(NSInteger)sessionId :(NSInteger)channel :(BOOL)isOgg :(BOOL)nsAgc;
+- (void)receiveData:(NSInteger)sessionId :(NSInteger)start :(NSData * _Nonnull)data;
+- (void)receiveDataBytes:(NSInteger)sessionId :(NSInteger)start :(NSData * _Nonnull)data;
+@end
+
+
+@interface JXPcmProcess (SWIFT_EXTENSION(PlaudBleSDK))
+- (void)onPcmData:(NSInteger)sessionId :(NSInteger)millSec :(NSData * _Nonnull)pcmData;
+- (void)onDecodeErr:(NSInteger)millSec;
+@end
+
+
+
+/// 完整的录音文件声音大小辅助工具类
+SWIFT_CLASS("_TtC11PlaudBleSDK15JXRecordVolumer")
+@interface JXRecordVolumer : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) JXRecordVolumer * _Nonnull shared;)
++ (JXRecordVolumer * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+/// 多久返回一个峰值?单位是毫秒,一个80B的avc包是20毫秒, 640B的pcm包是20毫秒
+/// 不再支持,固定是1秒
+@property (nonatomic) NSInteger waveInterval;
+/// 音量数组, 内数组包含两个值,第一个是时间(秒),第二个是声音大小(分贝)
+/// 例:[[1, 54], [2, 76], [3, 46]]
+/// 从第一秒开始
+@property (nonatomic, copy) NSArray *> * _Nonnull volumeArr;
+/// 当前走到第几秒
+@property (nonatomic, readonly) NSInteger curSec;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 获取一个包的平均音量
+/// 如果要自定义,可以用这个方法,否则就用不着
+/// \param pcmData 解码后的pcm数据包,单声道是640字节,双声道是1280字节
+///
+- (NSInteger)averageVolume:(NSData * _Nonnull)pcmData SWIFT_WARN_UNUSED_RESULT;
+/// 追加一个解码后的数据包
+/// \param start 偏移量
+///
+/// \param pcmData 解码后的pcm数据包,单声道是640字节,双声道是1280字节
+///
+/// \param channels 声道
+///
+- (void)appendWithStart:(NSInteger)start pcmData:(NSData * _Nonnull)pcmData;
+/// 重置声音队列(开始新的录音前)
+- (void)reset;
+@end
+
+@protocol VolumeProtocol;
+
+/// 实时录音声音大小辅助工具类
+SWIFT_CLASS("_TtC11PlaudBleSDK18JXRecordingVolumer")
+@interface JXRecordingVolumer : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) JXRecordingVolumer * _Nonnull shared;)
++ (JXRecordingVolumer * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+@property (nonatomic, weak) id _Nullable delegate;
+/// 多久返回一个峰值?单位是毫秒,一个80B的avc包是20毫秒, 640B的pcm包是20毫秒
+@property (nonatomic) NSInteger waveInterval;
+/// 音量数组, 内数组包含两个值,第一个是时间(秒),第二个是声音大小(分贝)
+/// 例:[[1, 54], [2, 76], [3, 46]]
+/// 从第一秒开始
+@property (nonatomic, readonly, copy) NSArray *> * _Nonnull volumeArr;
+/// 当前走到第几秒
+@property (nonatomic, readonly) NSInteger curSec;
+/// 当前毫秒值
+@property (nonatomic, readonly) NSInteger curMillisec;
+/// 当前大小(偏移+data大小)
+@property (nonatomic, readonly) NSInteger curFileSize;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 获取一个包的平均音量
+/// 如果要自定义,可以用这个方法,否则就用不着
+/// \param pcmData 解码后的pcm数据包,640,如果是1280双声道,会转成单声道的640
+///
+- (CGFloat)averageVolume:(NSData * _Nonnull)pcmData SWIFT_WARN_UNUSED_RESULT;
+/// 追加一个解码后的数据包
+/// \param start 原始数据偏移量
+///
+/// \param pcmData 解码后的数据(注意:双声道会变单声道)
+///
+/// \param channels 声道数
+///
+- (void)appendWithStart:(NSInteger)start pcmData:(NSData * _Nonnull)pcmData channels:(NSInteger)channels;
+/// 追加一个解码后的数据包(单声道)
+/// \param millSec 毫秒值
+///
+/// \param pcmData 解码后的数据
+///
+- (void)append:(NSInteger)millSec :(NSData * _Nonnull)pcmData;
+/// 初始化历史数据
+- (void)setOldVolumeMetersWithMeters:(NSArray *> * _Nonnull)meters;
+/// 重置声音队列(开始新的录音前)
+- (void)reset;
+@end
+
+
+SWIFT_CLASS("_TtC11PlaudBleSDK17JXWave2PcmProcess")
+@interface JXWave2PcmProcess : NSObject
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 单例
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) JXWave2PcmProcess * _Nonnull shared;)
++ (JXWave2PcmProcess * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+/// 协议
+@property (nonatomic, weak) id _Nullable delegate;
+/// 回调线程,默认主线程
+@property (nonatomic, strong) dispatch_queue_t _Nonnull callbackQueue;
+/// 重置,开始接收数据前必须重置
+/// \param sessionId 录音id
+///
+- (void)resetWith:(NSInteger)sessionId;
+/// 接收Wave数据
+/// \param sessionId 录音id
+///
+/// \param start 偏移量
+///
+/// \param data wave数据
+///
+- (void)receiveData:(NSInteger)sessionId :(NSInteger)start :(NSData * _Nonnull)data;
+@end
+
+
+/// 这个是测试用的
+SWIFT_CLASS("_TtC11PlaudBleSDK12JXWaveHelper")
+@interface JXWaveHelper : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) JXWaveHelper * _Nonnull shared;)
++ (JXWaveHelper * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull tmpPcmPath;)
++ (NSString * _Nonnull)tmpPcmPath SWIFT_WARN_UNUSED_RESULT;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull tmpWavPath;)
++ (NSString * _Nonnull)tmpWavPath SWIFT_WARN_UNUSED_RESULT;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull leftPath;)
++ (NSString * _Nonnull)leftPath SWIFT_WARN_UNUSED_RESULT;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull rightPath;)
++ (NSString * _Nonnull)rightPath SWIFT_WARN_UNUSED_RESULT;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull leftWavPath;)
++ (NSString * _Nonnull)leftWavPath SWIFT_WARN_UNUSED_RESULT;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull rightWavPath;)
++ (NSString * _Nonnull)rightWavPath SWIFT_WARN_UNUSED_RESULT;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull leftLycPath;)
++ (NSString * _Nonnull)leftLycPath SWIFT_WARN_UNUSED_RESULT;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull rightLycPath;)
++ (NSString * _Nonnull)rightLycPath SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// pcm文件追加文件头转为wave文件
+/// \param pcmFilePath pcm文件路径
+///
+/// \param wavFilePath wave文件路径
+///
+/// \param channels 声道数,默认1
+///
+///
+/// returns:
+/// 是否成功
+- (BOOL)pcmFileToWaveWithPcmFilePath:(NSString * _Nonnull)pcmFilePath wavFilePath:(NSString * _Nonnull)wavFilePath channels:(uint32_t)channels simpleRate:(uint32_t)simpleRate SWIFT_WARN_UNUSED_RESULT;
+/// 分离左右声道
+- (void)divideLeftAndRight:(NSString * _Nonnull)wavePath :(NSString * _Nonnull)leftPath :(NSString * _Nonnull)rightPath handler:(void (^ _Nonnull)(BOOL))handler;
+@end
+
+
+SWIFT_PROTOCOL("_TtP11PlaudBleSDK11OtaProtocol_")
+@protocol OtaProtocol
+/// ota通知
+/// \param uid 标识
+///
+/// \param status 状态 0 正常,1. 升级失败 2. 版本信息不匹配 3.FLASH写失败 4.文件太大 5.尝试次数过多 6. U盘模式;7.正在录音; 8. U盘剩余空间不足; 9. 正在工作中; 10. G101眼镜仅在充电模式允许升级;11. G101眼镜电池电量不足;12. G101眼镜收到升级协议并准备调整到OTA_MODE; 255:模式不对(录音笔不在录音模式,黑黎三段式开关特有)
+///
+/// \param errmsg 协议版本4,如果升级成功,这里返回升级后的版本;如果失败,依然返回错误信息。
+///
+- (void)bleFotaResultWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg;
+/// ota包请求,录音笔请求发送升级包数据
+/// \param uid 标识
+///
+/// \param start 开始位置(字节)
+///
+/// \param end 结束位置(字节)
+///
+- (void)bleFotaPackReqWithUid:(NSInteger)uid start:(NSInteger)start end:(NSInteger)end;
+/// ota包接收完成
+/// \param uid 标识
+///
+/// \param status 状态 0 正常,1. 升级失败 2. 版本信息不匹配 3.FLASH写失败 4.文件太大 5尝试次数过多 6. U盘模式;7.正在录音; 8. U盘剩余空间不足; 9. 正在工作中; 10. G101眼镜仅在充电模式允许升级;11. G101眼镜电池电量不足;12. G101眼镜收到升级协议并准备调整到OTA_MODE; 255:模式不对(录音笔不在录音模式,黑黎三段式开关特有)
+///
+/// \param errmsg 协议版本4,如果升级成功,这里返回升级后的版本;如果失败,依然返回错误信息。
+///
+- (void)bleFotaPackFinWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg;
+@end
+
+
+/// 声波文件生成工具类
+SWIFT_CLASS("_TtC11PlaudBleSDK15PDFileSoundWave")
+@interface PDFileSoundWave : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PDFileSoundWave * _Nonnull shared;)
++ (PDFileSoundWave * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 是否有未完成任务
+- (BOOL)hasAvcToSoundWaveTask SWIFT_WARN_UNUSED_RESULT;
+/// 取消当前任务(如果有的话),清空任务队列
+- (void)generateSoundWaveCancel;
+/// 录音文件获取声波
+/// \param filePath 录音文件路径
+///
+/// \param channels 声道数
+///
+/// \param isOgg 是ogg还是opus/avc?
+///
+/// \param isMusic 是不是音乐模式
+///
+/// \param callback 回调
+///
+- (void)createSoundWave:(NSString * _Nonnull)filePath :(NSInteger)channels :(BOOL)isOgg :(BOOL)isMusic :(void (^ _Nonnull)(BOOL, NSInteger))callback;
+/// 录音文件生成声波
+/// \param avcPath 未解码文件路径
+///
+/// \param channels 声道数,默认是1
+///
+/// \param completionHandler 回调结果和进度
+///
+- (void)avcToSoundWaveWithAvcPath:(NSString * _Nonnull)avcPath channels:(NSInteger)channels completionHandler:(void (^ _Nonnull)(BOOL, NSInteger))completionHandler;
+@end
+
+
+/// 完整的录音文件声音大小辅助工具类
+SWIFT_CLASS("_TtC11PlaudBleSDK15PDRecordVolumer")
+@interface PDRecordVolumer : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PDRecordVolumer * _Nonnull shared;)
++ (PDRecordVolumer * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+/// 多久返回一个峰值?单位是毫秒,一个80B的avc包是20毫秒, 640B的pcm包是20毫秒
+/// 不再支持,固定是1秒
+@property (nonatomic) NSInteger waveInterval;
+/// 音量数组, 内数组包含两个值,第一个是时间(秒),第二个是声音大小(分贝)
+/// 例:[[1, 54], [2, 76], [3, 46]]
+/// 从第一秒开始
+@property (nonatomic, copy) NSArray *> * _Nonnull volumeArr;
+/// 当前走到第几秒
+@property (nonatomic, readonly) NSInteger curSec;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 获取一个包的平均音量
+/// 如果要自定义,可以用这个方法,否则就用不着
+/// \param pcmData 解码后的pcm数据包,单声道是640字节,双声道是1280字节
+///
+- (NSInteger)averageVolume:(NSData * _Nonnull)pcmData SWIFT_WARN_UNUSED_RESULT;
+/// 追加一个解码后的数据包
+/// \param start 偏移量
+///
+/// \param pcmData 解码后的pcm数据包,单声道是640字节,双声道是1280字节
+///
+/// \param channels 声道
+///
+- (void)appendWithStart:(NSInteger)start pcmData:(NSData * _Nonnull)pcmData;
+/// 重置声音队列(开始新的录音前)
+- (void)reset;
+@end
+
+@protocol PDVolumeProtocol;
+
+/// 实时录音声音大小辅助工具类
+SWIFT_CLASS("_TtC11PlaudBleSDK18PDRecordingVolumer")
+@interface PDRecordingVolumer : NSObject
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PDRecordingVolumer * _Nonnull shared;)
++ (PDRecordingVolumer * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+@property (nonatomic, weak) id _Nullable delegate;
+/// 多久返回一个峰值?单位是毫秒,一个80B的avc包是20毫秒, 640B的pcm包是20毫秒
+@property (nonatomic) NSInteger waveInterval;
+/// 音量数组, 内数组包含两个值,第一个是时间(秒),第二个是声音大小(分贝)
+/// 例:[[1, 54], [2, 76], [3, 46]]
+/// 从第一秒开始
+@property (nonatomic, readonly, copy) NSArray *> * _Nonnull volumeArr;
+/// 当前走到第几秒
+@property (nonatomic, readonly) NSInteger curSec;
+/// 当前毫秒值
+@property (nonatomic, readonly) NSInteger curMillisec;
+/// 当前大小(偏移+data大小)
+@property (nonatomic, readonly) NSInteger curFileSize;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+/// 获取一个包的平均音量
+/// 如果要自定义,可以用这个方法,否则就用不着
+/// \param pcmData 解码后的pcm数据包,640,如果是1280双声道,会转成单声道的640
+///
+- (CGFloat)averageVolume:(NSData * _Nonnull)pcmData SWIFT_WARN_UNUSED_RESULT;
+/// 追加一个解码后的数据包
+/// \param start 原始数据偏移量
+///
+/// \param pcmData 解码后的数据(注意:双声道会变单声道)
+///
+/// \param channels 声道数
+///
+- (void)appendWithStart:(NSInteger)start pcmData:(NSData * _Nonnull)pcmData channels:(NSInteger)channels;
+/// 追加一个解码后的数据包(单声道)
+/// \param millSec 毫秒值
+///
+/// \param pcmData 解码后的数据
+///
+- (void)append:(NSInteger)millSec :(NSData * _Nonnull)pcmData;
+/// 初始化历史数据
+- (void)setOldVolumeMetersWithMeters:(NSArray *> * _Nonnull)meters;
+/// 重置声音队列(开始新的录音前)
+- (void)reset;
+@end
+
+
+SWIFT_PROTOCOL("_TtP11PlaudBleSDK16PDVolumeProtocol_")
+@protocol PDVolumeProtocol
+/// 时长该表
+- (void)onDurationWithMillisec:(NSInteger)millisec;
+/// 回到声音大小
+/// \param sec 第几秒? 从1开始,每个整数秒会有一个之前一秒钟的平均音量
+///
+/// \param volume 单位分贝
+///
+- (void)onVolumeWithSec:(NSInteger)sec volume:(NSInteger)volume;
+/// 回到声音大小
+/// \param mescIndex 每二十毫秒为一个间隔,从 0 开始,每二十毫秒对应一个分贝值
+///
+/// \param volume 单位分贝
+///
+- (void)onVolumePerTwentyMsecWithMescSecond:(NSInteger)mescSecond volume:(NSInteger)volume;
+@end
+
+
+
+/// 录音笔固件升级信息
+SWIFT_CLASS("_TtC11PlaudBleSDK10UpdateInfo")
+@interface UpdateInfo : NSObject
+/// 哪个录音笔?
+@property (nonatomic, copy) NSString * _Nonnull sn;
+/// 固件版本 (例:T0004)
+@property (nonatomic, copy) NSString * _Nonnull swVersion;
+/// 当前版本 (例:V1.0.0)
+@property (nonatomic, copy) NSString * _Nonnull currentVersion;
+/// 目标版本, 为空表示没有升级版本
+@property (nonatomic, copy) NSString * _Nonnull version;
+/// 下载地址
+@property (nonatomic, copy) NSString * _Nonnull url;
+/// 大小
+@property (nonatomic) NSInteger size;
+/// 更新信息
+@property (nonatomic, copy) NSString * _Nonnull modifyDesc;
+/// “本次升级大约需要10分钟”
+@property (nonatomic, copy) NSString * _Nonnull updateDesc;
+@property (nonatomic, copy) NSString * _Nonnull updatePreTip;
+@property (nonatomic, copy) NSString * _Nonnull updatingTip;
+@property (nonatomic, copy) NSString * _Nonnull failureTip;
+/// 初始版本
+@property (nonatomic, copy) NSString * _Nonnull fromVersion;
+/// 目标版本
+@property (nonatomic, copy) NSString * _Nonnull toVersion;
+/// md5校验完整性
+@property (nonatomic, copy) NSString * _Nonnull md5;
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// 当前录音笔是否需要升级固件?
+- (BOOL)hasNewVersion:(BleDevice * _Nonnull)device SWIFT_WARN_UNUSED_RESULT;
+/// 校验MD5, path是下载后升级包的路径
+- (BOOL)checkMD5WithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT;
+/// 方便打印
+- (NSString * _Nonnull)toString SWIFT_WARN_UNUSED_RESULT;
+@end
+
+
+SWIFT_PROTOCOL("_TtP11PlaudBleSDK14VolumeProtocol_")
+@protocol VolumeProtocol
+/// 时长该表
+- (void)onDurationWithMillisec:(NSInteger)millisec;
+/// 回到声音大小
+/// \param sec 第几秒? 从1开始,每个整数秒会有一个之前一秒钟的平均音量
+///
+/// \param volume 单位分贝
+///
+- (void)onVolumeWithSec:(NSInteger)sec volume:(NSInteger)volume;
+@end
+
+@class PublicKey;
+@class EncryptedMessage;
+@class PrivateKey;
+enum DigestType : NSInteger;
+@class Signature;
+@class VerificationResult;
+
+SWIFT_CLASS_NAMED("_objc_ClearMessage")
+@interface ClearMessage : NSObject
+@property (nonatomic, readonly, copy) NSString * _Nonnull base64String;
+@property (nonatomic, readonly, copy) NSData * _Nonnull data;
+- (nonnull instancetype)initWithData:(NSData * _Nonnull)data OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithString:(NSString * _Nonnull)string using:(NSUInteger)rawEncoding error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithBase64Encoded:(NSString * _Nonnull)base64String error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (NSString * _Nullable)stringWithEncoding:(NSUInteger)rawEncoding error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (EncryptedMessage * _Nullable)encryptedWith:(PublicKey * _Nonnull)key padding:(SecPadding)padding error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (Signature * _Nullable)signedWith:(PrivateKey * _Nonnull)key digestType:(enum DigestType)digestType error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (VerificationResult * _Nullable)verifyWith:(PublicKey * _Nonnull)key signature:(Signature * _Nonnull)signature digestType:(enum DigestType)digestType error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+SWIFT_CLASS_NAMED("_objc_EncryptedMessage")
+@interface EncryptedMessage : NSObject
+@property (nonatomic, readonly, copy) NSString * _Nonnull base64String;
+@property (nonatomic, readonly, copy) NSData * _Nonnull data;
+- (nonnull instancetype)initWithData:(NSData * _Nonnull)data OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithBase64Encoded:(NSString * _Nonnull)base64String error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (ClearMessage * _Nullable)decryptedWith:(PrivateKey * _Nonnull)key padding:(SecPadding)padding error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+@class NSBundle;
+
+SWIFT_CLASS_NAMED("_objc_PrivateKey")
+@interface PrivateKey : NSObject
+@property (nonatomic, readonly) SecKeyRef _Nonnull reference;
+@property (nonatomic, readonly, copy) NSData * _Nullable originalData;
+- (NSString * _Nullable)pemStringAndReturnError:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (NSData * _Nullable)dataAndReturnError:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (NSString * _Nullable)base64StringAndReturnError:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (nullable instancetype)initWithData:(NSData * _Nonnull)data error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithReference:(SecKeyRef _Nonnull)reference error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithBase64Encoded:(NSString * _Nonnull)base64String error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithPemEncoded:(NSString * _Nonnull)pemString error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithPemNamed:(NSString * _Nonnull)pemName in:(NSBundle * _Nonnull)bundle error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithDerNamed:(NSString * _Nonnull)derName in:(NSBundle * _Nonnull)bundle error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+SWIFT_CLASS_NAMED("_objc_PublicKey")
+@interface PublicKey : NSObject
+@property (nonatomic, readonly) SecKeyRef _Nonnull reference;
+@property (nonatomic, readonly, copy) NSData * _Nullable originalData;
+- (NSString * _Nullable)pemStringAndReturnError:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (NSData * _Nullable)dataAndReturnError:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (NSString * _Nullable)base64StringAndReturnError:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT;
+- (nullable instancetype)initWithData:(NSData * _Nonnull)data error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithReference:(SecKeyRef _Nonnull)reference error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithBase64Encoded:(NSString * _Nonnull)base64String error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithPemEncoded:(NSString * _Nonnull)pemString error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithPemNamed:(NSString * _Nonnull)pemName in:(NSBundle * _Nonnull)bundle error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithDerNamed:(NSString * _Nonnull)derName in:(NSBundle * _Nonnull)bundle error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
++ (NSArray * _Nonnull)publicKeysWithPemEncoded:(NSString * _Nonnull)pemString SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+SWIFT_CLASS_NAMED("_objc_Signature")
+@interface Signature : NSObject
+@property (nonatomic, readonly, copy) NSString * _Nonnull base64String;
+@property (nonatomic, readonly, copy) NSData * _Nonnull data;
+- (nonnull instancetype)initWithData:(NSData * _Nonnull)data OBJC_DESIGNATED_INITIALIZER;
+- (nullable instancetype)initWithBase64Encoded:(NSString * _Nonnull)base64String error:(NSError * _Nullable * _Nullable)error OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+typedef SWIFT_ENUM(NSInteger, DigestType, open) {
+ DigestTypeSha1 = 0,
+ DigestTypeSha224 = 1,
+ DigestTypeSha256 = 2,
+ DigestTypeSha384 = 3,
+ DigestTypeSha512 = 4,
+};
+
+
+SWIFT_CLASS_NAMED("_objc_VerificationResult")
+@interface VerificationResult : NSObject
+@property (nonatomic, readonly) BOOL isSuccessful;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+#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/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK.h
new file mode 100644
index 0000000..946af2c
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK.h
@@ -0,0 +1,33 @@
+//
+// PlaudBleSDK.h
+// PlaudBleSDK
+//
+// Copyright © 2025 NiceBuild. All rights reserved.
+//
+
+#import
+#import
+
+//! Project version number for PlaudBleSDK.
+FOUNDATION_EXPORT double PlaudBleSDKVersionNumber;
+
+//! Project version string for PlaudBleSDK.
+FOUNDATION_EXPORT const unsigned char PlaudBleSDKVersionString[];
+
+// ObjC types from the embedded PenBleSDK static library
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+#import
+
+// PlaudBleSDK-Swift.h is auto-generated by Xcode (all Swift @objc types are
+// compiled directly into this framework — no separate PenBleSDK module needed).
+#if __has_include()
+#import
+#endif
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/SwiftyRSA.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/SwiftyRSA.h
new file mode 100644
index 0000000..32f2d0a
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/SwiftyRSA.h
@@ -0,0 +1,19 @@
+//
+// SwiftyRSA.h
+// SwiftyRSA
+//
+// Created by Loïs Di Qual on 7/2/15.
+// Copyright (c) 2015 Scoop. All rights reserved.
+//
+
+#import
+
+//! Project version number for SwiftyRSA.
+FOUNDATION_EXPORT double SwiftyRSAVersionNumber;
+
+//! Project version string for SwiftyRSA.
+FOUNDATION_EXPORT const unsigned char SwiftyRSAVersionString[];
+
+// In this header, you should import all the public headers of your framework using statements like #import
+
+#import
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Transcode.h b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Transcode.h
new file mode 100644
index 0000000..4bd5e4d
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Transcode.h
@@ -0,0 +1,52 @@
+//
+// Transcode.h
+// PenBleSDK
+//
+// Created by 天诺泰 on 2018/11/12.
+// Copyright © 2018 天诺泰. All rights reserved.
+//
+
+#import
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface Transcode : NSObject
+
+@property (nonatomic, assign) BOOL isProjectJT;
+
++ (instancetype _Nonnull)shared;
+
+
++ (double)volume:(NSData *)pcmData buff:(short [80*4])buff;
++ (double)volume:(NSData *)pcmData;
+
+
+/// pcm转wav
++ (void)translatePcmFile:(NSString *)pcmPath toWavFile:(NSString *)wavPath withChannels:(uint32_t)channels simpleRate:(uint32_t)simpleRate;
+
+/// 生成Wav头信息
++ (NSData *)generateWavHeaderWithPcmLen:(uint32_t)pcmLen channels:(uint32_t)channels sampleRate:(uint32_t)sampleRate;
+
+/// 获取文件的crc
++ (uint16_t)getCrc:(NSString *)filePath;
+/// 检查文件的crc
++ (BOOL)checkCrc:(uint16_t)crc withFile:(NSString *)filePath;
+
+/**
+ 分离双声道wave文件为左右声道两个文件
+
+ @param wavePath wave文件路径
+ @param leftPath 左声道文件路径
+ @param rightPath 右声道文件路径
+ @param handle block回调
+ */
++ (void)divide:(NSString *)wavePath toLeft:(NSString *)leftPath andRight:(NSString *)rightPath handle:(void(^_Nullable)(void))handle;
+
+/// 获取偏移量地址
+long calculate(void);
+
+
+@end
+
+NS_ASSUME_NONNULL_END
+
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Info.plist b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Info.plist
new file mode 100644
index 0000000..6c48b2f
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Info.plist
@@ -0,0 +1,55 @@
+
+
+
+
+ BuildMachineOSBuild
+ 24G90
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ PlaudBleSDK
+ CFBundleIdentifier
+ com.plaud.sdk.PlaudBleSDK
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ PlaudBleSDK
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSupportedPlatforms
+
+ iPhoneOS
+
+ CFBundleVersion
+ 1
+ DTCompiler
+ com.apple.compilers.llvm.clang.1_0
+ DTPlatformBuild
+ 22C146
+ DTPlatformName
+ iphoneos
+ DTPlatformVersion
+ 18.2
+ DTSDKBuild
+ 22C146
+ DTSDKName
+ iphoneos18.2
+ DTXcode
+ 1620
+ DTXcodeBuild
+ 16C5032a
+ MinimumOSVersion
+ 14.0
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+
+
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
new file mode 100644
index 0000000..29d1b68
Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.abi.json b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.abi.json
new file mode 100644
index 0000000..1b60c19
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.abi.json
@@ -0,0 +1,51754 @@
+{
+ "ABIRoot": {
+ "kind": "Root",
+ "name": "PlaudBleSDK",
+ "printedName": "PlaudBleSDK",
+ "children": [
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "BleFile",
+ "printedName": "BleFile",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "sn",
+ "printedName": "sn",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)sn",
+ "mangledName": "$s11PlaudBleSDK0B4FileC2snSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)sn",
+ "mangledName": "$s11PlaudBleSDK0B4FileC2snSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setSn:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC2snSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC2snSSvM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC2snSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sessionId",
+ "printedName": "sessionId",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)sessionId",
+ "mangledName": "$s11PlaudBleSDK0B4FileC9sessionIdSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)sessionId",
+ "mangledName": "$s11PlaudBleSDK0B4FileC9sessionIdSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setSessionId:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC9sessionIdSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC9sessionIdSivM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC9sessionIdSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "size",
+ "printedName": "size",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)size",
+ "mangledName": "$s11PlaudBleSDK0B4FileC4sizeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)size",
+ "mangledName": "$s11PlaudBleSDK0B4FileC4sizeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setSize:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC4sizeSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC4sizeSivM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC4sizeSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "offset",
+ "printedName": "offset",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)offset",
+ "mangledName": "$s11PlaudBleSDK0B4FileC6offsetSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)offset",
+ "mangledName": "$s11PlaudBleSDK0B4FileC6offsetSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setOffset:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC6offsetSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC6offsetSivM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC6offsetSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "timezone",
+ "printedName": "timezone",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)timezone",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8timezoneSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)timezone",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8timezoneSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setTimezone:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8timezoneSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC8timezoneSivM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8timezoneSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "zoneMin",
+ "printedName": "zoneMin",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)zoneMin",
+ "mangledName": "$s11PlaudBleSDK0B4FileC7zoneMinSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)zoneMin",
+ "mangledName": "$s11PlaudBleSDK0B4FileC7zoneMinSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setZoneMin:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC7zoneMinSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC7zoneMinSivM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC7zoneMinSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "scenes",
+ "printedName": "scenes",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)scenes",
+ "mangledName": "$s11PlaudBleSDK0B4FileC6scenesSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)scenes",
+ "mangledName": "$s11PlaudBleSDK0B4FileC6scenesSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setScenes:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC6scenesSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC6scenesSivM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC6scenesSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "penCollect",
+ "printedName": "penCollect",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)penCollect",
+ "mangledName": "$s11PlaudBleSDK0B4FileC10penCollectSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)penCollect",
+ "mangledName": "$s11PlaudBleSDK0B4FileC10penCollectSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setPenCollect:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC10penCollectSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC10penCollectSivM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC10penCollectSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "channels",
+ "printedName": "channels",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)channels",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8channelsSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)channels",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8channelsSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setChannels:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8channelsSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC8channelsSivM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8channelsSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "nsAgc",
+ "printedName": "nsAgc",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)nsAgc",
+ "mangledName": "$s11PlaudBleSDK0B4FileC5nsAgcSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)nsAgc",
+ "mangledName": "$s11PlaudBleSDK0B4FileC5nsAgcSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setNsAgc:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC5nsAgcSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC5nsAgcSbvM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC5nsAgcSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isOgg",
+ "printedName": "isOgg",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)isOgg",
+ "mangledName": "$s11PlaudBleSDK0B4FileC5isOggSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)isOgg",
+ "mangledName": "$s11PlaudBleSDK0B4FileC5isOggSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)setIsOgg:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC5isOggSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B4FileC5isOggSbvM",
+ "mangledName": "$s11PlaudBleSDK0B4FileC5isOggSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isMusic",
+ "printedName": "isMusic",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(py)isMusic",
+ "mangledName": "$s11PlaudBleSDK0B4FileC7isMusicSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)isMusic",
+ "mangledName": "$s11PlaudBleSDK0B4FileC7isMusicSbvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFile",
+ "printedName": "PlaudBleSDK.BleFile",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)init",
+ "mangledName": "$s11PlaudBleSDK0B4FileCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFile",
+ "printedName": "PlaudBleSDK.BleFile",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)init::",
+ "mangledName": "$s11PlaudBleSDK0B4FileCyACSi_Sitcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFile",
+ "printedName": "PlaudBleSDK.BleFile",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)init:::",
+ "mangledName": "$s11PlaudBleSDK0B4FileCyACSS_S2itcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(_:_:_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFile",
+ "printedName": "PlaudBleSDK.BleFile",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "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",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)init:::::",
+ "mangledName": "$s11PlaudBleSDK0B4FileCyACSS_S3iSbtcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(_:_:_:_:_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFile",
+ "printedName": "PlaudBleSDK.BleFile",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)init:::::::",
+ "mangledName": "$s11PlaudBleSDK0B4FileCyACSS_S5iSbtcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "duration",
+ "printedName": "duration()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)duration",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8durationSiyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "oggDuration",
+ "printedName": "oggDuration()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)oggDuration",
+ "mangledName": "$s11PlaudBleSDK0B4FileC11oggDurationSiyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "toString",
+ "printedName": "toString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(im)toString",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8toStringSSyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "calculateDuration",
+ "printedName": "calculateDuration(_:_:_:_:)",
+ "children": [
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile(cm)calculateDuration::::",
+ "mangledName": "$s11PlaudBleSDK0B4FileC17calculateDurationyS2i_SiSbSitFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "copy",
+ "printedName": "copy(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "ObjectiveC.NSZone?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSZone",
+ "printedName": "ObjectiveC.NSZone",
+ "usr": "s:10ObjectiveC6NSZoneV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleFile(im)copyWithZone:",
+ "mangledName": "$s11PlaudBleSDK0B4FileC4copy4withyp10ObjectiveC6NSZoneVSg_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "copyWithZone:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "zoneSecond",
+ "printedName": "zoneSecond()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleFile(im)zoneSecond",
+ "mangledName": "$s11PlaudBleSDK0B4FileC10zoneSecondSiyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "utsStamp",
+ "printedName": "utsStamp()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleFile(im)utsStamp",
+ "mangledName": "$s11PlaudBleSDK0B4FileC8utsStampSiyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile",
+ "mangledName": "$s11PlaudBleSDK0B4FileC",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "GlassData",
+ "printedName": "GlassData",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "year",
+ "printedName": "year",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(py)year",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC4yearSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)year",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC4yearSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)setYear:",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC4yearSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK9GlassDataC4yearSivM",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC4yearSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "month",
+ "printedName": "month",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(py)month",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC5monthSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)month",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC5monthSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)setMonth:",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC5monthSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK9GlassDataC5monthSivM",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC5monthSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "day",
+ "printedName": "day",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(py)day",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC3daySivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)day",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC3daySivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)setDay:",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC3daySivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK9GlassDataC3daySivM",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC3daySivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "time",
+ "printedName": "time",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(py)time",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC4timeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)time",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC4timeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)setTime:",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC4timeSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK9GlassDataC4timeSivM",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC4timeSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GlassData",
+ "printedName": "PlaudBleSDK.GlassData",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)init",
+ "mangledName": "$s11PlaudBleSDK9GlassDataCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(_:_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GlassData",
+ "printedName": "PlaudBleSDK.GlassData",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt16",
+ "printedName": "Swift.UInt16",
+ "usr": "s:s6UInt16V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData(im)init::::",
+ "mangledName": "$s11PlaudBleSDK9GlassDataCyACs6UInt16V_s5UInt8VAGs6UInt32Vtcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData",
+ "mangledName": "$s11PlaudBleSDK9GlassDataC",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "CommonCrypto",
+ "printedName": "CommonCrypto",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "CoreBluetooth",
+ "printedName": "CoreBluetooth",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "BleRecordMarkingTag",
+ "printedName": "BleRecordMarkingTag",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "timestamp",
+ "printedName": "timestamp",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(py)timestamp",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC9timestamps6UInt32Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(im)timestamp",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC9timestamps6UInt32Vvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "type",
+ "printedName": "type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(py)type",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC4types5UInt8Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(im)type",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC4types5UInt8Vvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "status",
+ "printedName": "status",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(py)status",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC6statuss5UInt8Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(im)status",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC6statuss5UInt8Vvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "reserved",
+ "printedName": "reserved",
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(py)reserved",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC8reservedSays5UInt8VGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Swift.UInt8]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(im)reserved",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC8reservedSays5UInt8VGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(timestamp:type:status:reserved:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleRecordMarkingTag",
+ "printedName": "PlaudBleSDK.BleRecordMarkingTag",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Swift.UInt8]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(im)initWithTimestamp:type:status:reserved:",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC9timestamp4type6status8reservedACs6UInt32V_s5UInt8VAKSayAKGtcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithTimestamp:type:status:reserved:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleRecordMarkingTag",
+ "printedName": "PlaudBleSDK.BleRecordMarkingTag",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag(im)init",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag",
+ "mangledName": "$s11PlaudBleSDK0B16RecordMarkingTagC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "Function",
+ "name": "mlog",
+ "printedName": "mlog(_:data:maxBytes:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK4mlog_4data8maxBytesySS_10Foundation4DataVSgSiSgtF",
+ "mangledName": "$s11PlaudBleSDK4mlog_4data8maxBytesySS_10Foundation4DataVSgSiSgtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "wlog",
+ "printedName": "wlog(_:data:maxBytes:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK4wlog_4data8maxBytesySS_10Foundation4DataVSgSiSgtF",
+ "mangledName": "$s11PlaudBleSDK4wlog_4data8maxBytesySS_10Foundation4DataVSgSiSgtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "BleAgentProtocol",
+ "printedName": "BleAgentProtocol",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "bleUpdatePowerLowErr",
+ "printedName": "bleUpdatePowerLowErr()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleUpdatePowerLowErr",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP20bleUpdatePowerLowErryyF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleDeviceDisconnectErr",
+ "printedName": "bleDeviceDisconnectErr()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleDeviceDisconnectErr",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP22bleDeviceDisconnectErryyF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleUDiskErr",
+ "printedName": "bleUDiskErr(funcName:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleUDiskErrWithFuncName:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP11bleUDiskErr8funcNameySS_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleAppKeyState",
+ "printedName": "bleAppKeyState(result:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleAppKeyStateWithResult:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleAppKeyState6resultySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleState",
+ "printedName": "bleState(powered:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleStateWithPowered:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP8bleState7poweredySb_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleConnectStage",
+ "printedName": "bleConnectStage(sn:stage:detail:)",
+ "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": "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": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleConnectStageWithSn:stage:detail:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleConnectStage2sn5stage6detailySSSg_SSAHtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "bleConnectStageWithSn:stage:detail:",
+ "declAttributes": [
+ "Optional",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleConnectState",
+ "printedName": "bleConnectState(state:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleConnectStateWithState:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleConnectState5stateySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleScanResult",
+ "printedName": "bleScanResult(bleDevices:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[PlaudBleSDK.BleDevice]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleScanResultWithBleDevices:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP13bleScanResult0F7DevicesySayAA0B6DeviceCG_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleScanOverTime",
+ "printedName": "bleScanOverTime()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleScanOverTime",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleScanOverTimeyyF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleHandshakeWait",
+ "printedName": "bleHandshakeWait(timeout:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleHandshakeWaitWithTimeout:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP16bleHandshakeWait7timeoutySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleBind",
+ "printedName": "bleBind(sn:status:protVersion:timezone:)",
+ "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": "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": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleBindWithSn:status:protVersion:timezone:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP7bleBind2sn6status11protVersion8timezoneySSSg_S3itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleDeviceName",
+ "printedName": "bleDeviceName(name:)",
+ "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": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleDeviceNameWithName:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP13bleDeviceName4nameySSSg_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleHeartbeat",
+ "printedName": "bleHeartbeat(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleHeartbeatWithStatus:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP12bleHeartbeat6statusySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "blePowerChange",
+ "printedName": "blePowerChange(power:oldPower:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)blePowerChangeWithPower:oldPower:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14blePowerChange5power03oldG0ySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleChargingState",
+ "printedName": "bleChargingState(isCharging:level:)",
+ "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": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleChargingStateWithIsCharging:level:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP16bleChargingState02isG05levelySb_SitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "blePenState",
+ "printedName": "blePenState(state:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:versionType:versionCode:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:versionType:versionCode:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP11blePenState5state7privacy03keyH05uDisk11findMyToken10hasSndpKey012deviceAccessO011versionType0U4CodeySi_S6iSSSitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "blePenTime",
+ "printedName": "blePenTime(stamp:timezone:zoneMin:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)blePenTimeWithStamp:timezone:zoneMin:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP10blePenTime5stamp8timezone7zoneMinySi_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleStorage",
+ "printedName": "bleStorage(total:free:duration:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleStorageWithTotal:free:duration:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP10bleStorage5total4free8durationySi_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "blePasswordReset",
+ "printedName": "blePasswordReset(password:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)blePasswordResetWithPassword:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP16blePasswordReset8passwordySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleBacklightDuration",
+ "printedName": "bleBacklightDuration(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleBacklightDuration:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP20bleBacklightDurationyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleBacklightBright",
+ "printedName": "bleBacklightBright(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleBacklightBright:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP18bleBacklightBrightyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleLanguage",
+ "printedName": "bleLanguage(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleLanguage:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP11bleLanguageyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRecScene",
+ "printedName": "bleRecScene(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRecScene:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP11bleRecSceneyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRecMode",
+ "printedName": "bleRecMode(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRecMode:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP10bleRecModeyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleVadSensitivity",
+ "printedName": "bleVadSensitivity(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleVadSensitivity:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP17bleVadSensitivityyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleBatteryMode",
+ "printedName": "bleBatteryMode(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleBatteryMode:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleBatteryModeyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleVpuGain",
+ "printedName": "bleVpuGain(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleVpuGain:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP10bleVpuGainyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleMicGain",
+ "printedName": "bleMicGain(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleMicGain:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP10bleMicGainyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleSwitchHandler",
+ "printedName": "bleSwitchHandler(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleSwitchHandler:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP16bleSwitchHandleryySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleAutoPowerOff",
+ "printedName": "bleAutoPowerOff(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleAutoPowerOff:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleAutoPowerOffyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRawWaveEnabled",
+ "printedName": "bleRawWaveEnabled(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRawWaveEnabled:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP17bleRawWaveEnabledyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRecordingAfterDisConnetEnabled",
+ "printedName": "bleRecordingAfterDisConnetEnabled(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRecordingAfterDisConnetEnabled:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP33bleRecordingAfterDisConnetEnabledyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleSyncWhenIdleEnabled",
+ "printedName": "bleSyncWhenIdleEnabled(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleSyncWhenIdleEnabled:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP22bleSyncWhenIdleEnabledyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleFindMyState",
+ "printedName": "bleFindMyState(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleFindMyState:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleFindMyStateyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleVPUCLKState",
+ "printedName": "bleVPUCLKState(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleVPUCLKState:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleVPUCLKStateyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleStopRecordingAfterCharging",
+ "printedName": "bleStopRecordingAfterCharging(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleStopRecordingAfterCharging:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP29bleStopRecordingAfterChargingyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleAutoClear",
+ "printedName": "bleAutoClear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleAutoClear:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP12bleAutoClearyySbF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleVad",
+ "printedName": "bleVad(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleVad:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP6bleVadyySbF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleDepair",
+ "printedName": "bleDepair(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleDepair:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP9bleDepairyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleWiFiOpen",
+ "printedName": "bleWiFiOpen(_:_:_:_:)",
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleWiFiOpen::::",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP11bleWiFiOpenyySi_S3StF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleWiFiClose",
+ "printedName": "bleWiFiClose(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleWiFiClose:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP12bleWiFiCloseyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleSetWiFiSsid",
+ "printedName": "bleSetWiFiSsid(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleSetWiFiSsidWithStatus:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleSetWiFiSsid6statusySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleGetWiFiSsid",
+ "printedName": "bleGetWiFiSsid(status:ssid:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "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@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleGetWiFiSsidWithStatus:ssid:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleGetWiFiSsid6status4ssidySi_SSSgtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleVoiceAbnormal",
+ "printedName": "bleVoiceAbnormal(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleVoiceAbnormalWithStatus:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP16bleVoiceAbnormal6statusySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleWebsocketProfile",
+ "printedName": "bleWebsocketProfile(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "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@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleWebsocketProfile::",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP19bleWebsocketProfileyySi_SSSgtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleWebsocketTest",
+ "printedName": "bleWebsocketTest(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleWebsocketTest:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP16bleWebsocketTestyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRecordStart",
+ "printedName": "bleRecordStart(sessionId:start:status:scene:startTime:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRecordStartWithSessionId:start:status:scene:startTime:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleRecordStart9sessionId5start6status5scene0K4TimeySi_S4itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRecordStop",
+ "printedName": "bleRecordStop(sessionId:reason:fileExist:fileSize:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRecordStopWithSessionId:reason:fileExist:fileSize:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP13bleRecordStop9sessionId6reason9fileExist0L4SizeySi_SiSbSitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRecordPause",
+ "printedName": "bleRecordPause(sessionId:reason:fileExist:fileSize:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRecordPauseWithSessionId:reason:fileExist:fileSize:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleRecordPause9sessionId6reason9fileExist0L4SizeySi_SiSbSitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRecordResume",
+ "printedName": "bleRecordResume(sessionId:start:status:scene:startTime:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRecordResumeWithSessionId:start:status:scene:startTime:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleRecordResume9sessionId5start6status5scene0K4TimeySi_S4itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleLedState",
+ "printedName": "bleLedState(onOff:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleLedStateOnOff:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP11bleLedState5onOffySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleSetLedState",
+ "printedName": "bleSetLedState(onOff:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleSetLedStateOnOff:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleSetLedState5onOffySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleFileList",
+ "printedName": "bleFileList(bleFiles:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[PlaudBleSDK.BleFile]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFile",
+ "printedName": "PlaudBleSDK.BleFile",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleFileListWithBleFiles:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP11bleFileList0F5FilesySayAA0bG0CG_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleSyncFileHead",
+ "printedName": "bleSyncFileHead(sessionId:status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleSyncFileHeadWithSessionId:status:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleSyncFileHead9sessionId6statusySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleSyncFileTail",
+ "printedName": "bleSyncFileTail(sessionId:crc:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleSyncFileTailWithSessionId:crc:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleSyncFileTail9sessionId3crcySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleMarking",
+ "printedName": "bleMarking(sessionId:status:markList:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Swift.UInt32]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleMarkingWithSessionId:status:markList:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP10bleMarking9sessionId6status8markListySi_SiSays6UInt32VGtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleGetRecordMarkingTags",
+ "printedName": "bleGetRecordMarkingTags(uid:totals:index:tags:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[PlaudBleSDK.BleRecordMarkingTag]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleRecordMarkingTag",
+ "printedName": "PlaudBleSDK.BleRecordMarkingTag",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleRecordMarkingTag"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleGetRecordMarkingTagsWithUid:totals:index:tags:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP23bleGetRecordMarkingTags3uid6totals5index4tagsySi_S2iSayAA0bhI3TagCGtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleAngles",
+ "printedName": "bleAngles(pitchAngle:rollbackAngle:yawAngle:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Float",
+ "printedName": "Swift.Float",
+ "usr": "s:Sf"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Float",
+ "printedName": "Swift.Float",
+ "usr": "s:Sf"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Float",
+ "printedName": "Swift.Float",
+ "usr": "s:Sf"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleAnglesWithPitchAngle:rollbackAngle:yawAngle:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP9bleAngles10pitchAngle08rollbackI003yawI0ySf_S2ftF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleDataComplete",
+ "printedName": "bleDataComplete()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleDataComplete",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleDataCompleteyyF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleData",
+ "printedName": "bleData(sessionId:start:data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleDataWithSessionId:start:data:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP7bleData9sessionId5start4dataySi_Si10Foundation0G0VtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "deviceLogData",
+ "printedName": "deviceLogData(start:data:logType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)deviceLogDataWithStart:data:logType:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP13deviceLogData5start4data7logTypeySi_10Foundation0H0VSitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "blePcmData",
+ "printedName": "blePcmData(sessionId:millsec:pcmData:isMusic:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)blePcmDataWithSessionId:millsec:pcmData:isMusic:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP10blePcmData9sessionId7millsec03pcmH07isMusicySi_Si10Foundation0H0VSbtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleDecodeFail",
+ "printedName": "bleDecodeFail(start:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleDecodeFailWithStart:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP13bleDecodeFail5startySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleSyncFileStop",
+ "printedName": "bleSyncFileStop()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleSyncFileStop",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleSyncFileStopyyF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleDeleteFile",
+ "printedName": "bleDeleteFile(sessionId:status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleDeleteFileWithSessionId:status:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP13bleDeleteFile9sessionId6statusySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleFotaResult",
+ "printedName": "bleFotaResult(uid:status:errmsg:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "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@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleFotaResultWithUid:status:errmsg:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP13bleFotaResult3uid6status6errmsgySi_SiSSSgtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleFotaPackReq",
+ "printedName": "bleFotaPackReq(uid:start:end:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleFotaPackReqWithUid:start:end:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleFotaPackReq3uid5start3endySi_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleFotaPackFin",
+ "printedName": "bleFotaPackFin(uid:status:errmsg:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "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@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleFotaPackFinWithUid:status:errmsg:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP14bleFotaPackFin3uid6status6errmsgySi_SiSSSgtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleOtaDataSendFail",
+ "printedName": "bleOtaDataSendFail()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleOtaDataSendFail",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP18bleOtaDataSendFailyyF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleRate",
+ "printedName": "bleRate(lossRate:rate:instantRate:)",
+ "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": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleRateWithLossRate:rate:instantRate:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP7bleRate04lossG04rate07instantG0ySd_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "blePrivacy",
+ "printedName": "blePrivacy(privacy:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)blePrivacyWithPrivacy:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP10blePrivacy7privacyySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleClearAllFile",
+ "printedName": "bleClearAllFile(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleClearAllFileWithStatus:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleClearAllFile6statusySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleDeviceStatus",
+ "printedName": "bleDeviceStatus(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Swift.UInt8]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleDeviceStatusWithStatus:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15bleDeviceStatus6statusySays5UInt8VG_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleNewFeature",
+ "printedName": "bleNewFeature(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleNewFeatureWithData:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP13bleNewFeature4datay10Foundation4DataV_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleAlarmRec",
+ "printedName": "bleAlarmRec(start:duration:repeatMode:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleAlarmRecWithStart:duration:repeatMode:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP11bleAlarmRec5start8duration10repeatModeySi_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleSetActive",
+ "printedName": "bleSetActive(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)bleSetActiveWithStatus:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP12bleSetActive6statusySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onBinaryFileReq",
+ "printedName": "onBinaryFileReq(type:packageOffset:packageSize:endStatus:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onBinaryFileReqWithType:packageOffset:packageSize:endStatus:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15onBinaryFileReq4type13packageOffset0K4Size9endStatusySi_S3itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onBinaryFileEnd",
+ "printedName": "onBinaryFileEnd(result:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onBinaryFileEndWithResult:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP15onBinaryFileEnd6resultySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncIdleWifiConfigReceived",
+ "printedName": "onSyncIdleWifiConfigReceived(index:ssid:password:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncIdleWifiConfigReceivedWithIndex:ssid:password:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP28onSyncIdleWifiConfigReceived5index4ssid8passwordys6UInt32V_S2StF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncIdleWifiConfigSet",
+ "printedName": "onSyncIdleWifiConfigSet(result:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncIdleWifiConfigSetWithResult:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP23onSyncIdleWifiConfigSet6resultySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncIdleWifiListReceived",
+ "printedName": "onSyncIdleWifiListReceived(list:)",
+ "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"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncIdleWifiListReceivedWithList:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP26onSyncIdleWifiListReceived4listySays6UInt32VG_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncIdleWifiDeleteResult",
+ "printedName": "onSyncIdleWifiDeleteResult(result:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncIdleWifiDeleteResultWithResult:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP26onSyncIdleWifiDeleteResult6resultySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncIdleWifiTestStarted",
+ "printedName": "onSyncIdleWifiTestStarted(index:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncIdleWifiTestStartedWithIndex:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP25onSyncIdleWifiTestStarted5indexys6UInt32V_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncIdleWillStart",
+ "printedName": "onSyncIdleWillStart(seconds:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncIdleWillStartWithSeconds:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP19onSyncIdleWillStart7secondsySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncIdleWifiTestResult",
+ "printedName": "onSyncIdleWifiTestResult(index:result:rawCode:)",
+ "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": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncIdleWifiTestResultWithIndex:result:rawCode:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP24onSyncIdleWifiTestResult5index6result7rawCodeys6UInt32V_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onResetFindmyResult",
+ "printedName": "onResetFindmyResult(result:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onResetFindmyResultWithResult:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP19onResetFindmyResult6resultySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onCommonParamsSetResult",
+ "printedName": "onCommonParamsSetResult(success:dataType:value:)",
+ "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": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onCommonParamsSetResultWithSuccess:dataType:value:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP23onCommonParamsSetResult7success8dataType5valueySb_SiSSSgtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onCommonParamsGetResult",
+ "printedName": "onCommonParamsGetResult(success:dataType:value:)",
+ "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": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onCommonParamsGetResultWithSuccess:dataType:value:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP23onCommonParamsGetResult7success8dataType5valueySb_SiSSSgtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSetSoundPlusTokenResult",
+ "printedName": "onSetSoundPlusTokenResult(licenseKey:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSetSoundPlusTokenResultWithLicenseKey:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP25onSetSoundPlusTokenResult10licenseKeyySS_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onGetSDFlashCIDResult",
+ "printedName": "onGetSDFlashCIDResult(cid:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onGetSDFlashCIDResultWithCid:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP21onGetSDFlashCIDResult3cidySS_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onGetDeviceLogList",
+ "printedName": "onGetDeviceLogList(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onGetDeviceLogListWithData:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP18onGetDeviceLogList4datay10Foundation4DataV_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncDeviceLogStart",
+ "printedName": "onSyncDeviceLogStart(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncDeviceLogStartWithData:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP20onSyncDeviceLogStart4datay10Foundation4DataV_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncDeviceLogStop",
+ "printedName": "onSyncDeviceLogStop()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncDeviceLogStop",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP19onSyncDeviceLogStopyyF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onSyncDeviceLogEnd",
+ "printedName": "onSyncDeviceLogEnd(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onSyncDeviceLogEndWithData:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP18onSyncDeviceLogEnd4datay10Foundation4DataV_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onDeviceLogDeleted",
+ "printedName": "onDeviceLogDeleted(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol(im)onDeviceLogDeletedWithData:",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP18onDeviceLogDeleted4datay10Foundation4DataV_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleAgentProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol",
+ "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "OtaProtocol",
+ "printedName": "OtaProtocol",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "bleFotaResult",
+ "printedName": "bleFotaResult(uid:status:errmsg:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "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@PlaudBleSDK@objc(pl)OtaProtocol(im)bleFotaResultWithUid:status:errmsg:",
+ "mangledName": "$s11PlaudBleSDK11OtaProtocolP13bleFotaResult3uid6status6errmsgySi_SiSSSgtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.OtaProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleFotaPackReq",
+ "printedName": "bleFotaPackReq(uid:start:end:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "c:@M@PlaudBleSDK@objc(pl)OtaProtocol(im)bleFotaPackReqWithUid:start:end:",
+ "mangledName": "$s11PlaudBleSDK11OtaProtocolP14bleFotaPackReq3uid5start3endySi_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.OtaProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "bleFotaPackFin",
+ "printedName": "bleFotaPackFin(uid:status:errmsg:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "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@PlaudBleSDK@objc(pl)OtaProtocol(im)bleFotaPackFinWithUid:status:errmsg:",
+ "mangledName": "$s11PlaudBleSDK11OtaProtocolP14bleFotaPackFin3uid6status6errmsgySi_SiSSSgtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.OtaProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)OtaProtocol",
+ "mangledName": "$s11PlaudBleSDK11OtaProtocolP",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "GlassProtocol",
+ "printedName": "GlassProtocol",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "glassData",
+ "printedName": "glassData(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[PlaudBleSDK.GlassData]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GlassData",
+ "printedName": "PlaudBleSDK.GlassData",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)GlassData"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)GlassProtocol(im)glassData::",
+ "mangledName": "$s11PlaudBleSDK13GlassProtocolP9glassDatayySi_SayAA0dG0CGtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.GlassProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "glassDataClear",
+ "printedName": "glassDataClear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)GlassProtocol(im)glassDataClear:",
+ "mangledName": "$s11PlaudBleSDK13GlassProtocolP14glassDataClearyySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.GlassProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)GlassProtocol",
+ "mangledName": "$s11PlaudBleSDK13GlassProtocolP",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "BleAgent",
+ "printedName": "BleAgent",
+ "children": [
+ {
+ "kind": "TypeDecl",
+ "name": "ConnectStage",
+ "printedName": "ConnectStage",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "start",
+ "printedName": "start",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO5startyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO5startyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "gattConnect",
+ "printedName": "gattConnect",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO04gattE0yA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO04gattE0yA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "setNotify",
+ "printedName": "setNotify",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO9setNotifyyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO9setNotifyyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "setBatteryNotify",
+ "printedName": "setBatteryNotify",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO16setBatteryNotifyyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO16setBatteryNotifyyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "readBattery",
+ "printedName": "readBattery",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO11readBatteryyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO11readBatteryyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "setDataNotify",
+ "printedName": "setDataNotify",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO13setDataNotifyyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO13setDataNotifyyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "preHandshake",
+ "printedName": "preHandshake",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO12preHandshakeyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO12preHandshakeyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "sendRSAPublic",
+ "printedName": "sendRSAPublic",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO13sendRSAPublicyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO13sendRSAPublicyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "firstHandshake",
+ "printedName": "firstHandshake",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO14firstHandshakeyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO14firstHandshakeyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "twoHandshake",
+ "printedName": "twoHandshake",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO12twoHandshakeyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO12twoHandshakeyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "handshakeGetSSN",
+ "printedName": "handshakeGetSSN",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO15handshakeGetSSNyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO15handshakeGetSSNyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "changeHandshakeTimeout",
+ "printedName": "changeHandshakeTimeout",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO22changeHandshakeTimeoutyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO22changeHandshakeTimeoutyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "syncTime",
+ "printedName": "syncTime",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BleAgent.ConnectStage.Type) -> PlaudBleSDK.BleAgent.ConnectStage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO8syncTimeyA2EmF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO8syncTimeyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectStage",
+ "printedName": "PlaudBleSDK.BleAgent.ConnectStage",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO8rawValueAESgSS_tcfc",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO8rawValueAESgSS_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK0B5AgentC12ConnectStageO8rawValueSSvp",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO8rawValueSSvp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO8rawValueSSvg",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO8rawValueSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK0B5AgentC12ConnectStageO",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12ConnectStageO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "String",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "Var",
+ "name": "protocolVersionNewBatteryService",
+ "printedName": "protocolVersionNewBatteryService",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B5AgentC32protocolVersionNewBatteryServiceSivpZ",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC32protocolVersionNewBatteryServiceSivpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "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:11PlaudBleSDK0B5AgentC32protocolVersionNewBatteryServiceSivgZ",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC32protocolVersionNewBatteryServiceSivgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "protocolVersionV20Features",
+ "printedName": "protocolVersionV20Features",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B5AgentC26protocolVersionV20FeaturesSivpZ",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC26protocolVersionV20FeaturesSivpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "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:11PlaudBleSDK0B5AgentC26protocolVersionV20FeaturesSivgZ",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC26protocolVersionV20FeaturesSivgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleAgent",
+ "printedName": "PlaudBleSDK.BleAgent",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleAgent",
+ "printedName": "PlaudBleSDK.BleAgent",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(cm)shared",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "cbManager",
+ "printedName": "cbManager",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "CoreBluetooth.CBCentralManager?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CBCentralManager",
+ "printedName": "CoreBluetooth.CBCentralManager",
+ "usr": "c:objc(cs)CBCentralManager"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B5AgentC9cbManagerSo09CBCentralF0CSgvp",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9cbManagerSo09CBCentralF0CSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "CoreBluetooth.CBCentralManager?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CBCentralManager",
+ "printedName": "CoreBluetooth.CBCentralManager",
+ "usr": "c:objc(cs)CBCentralManager"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC9cbManagerSo09CBCentralF0CSgvg",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9cbManagerSo09CBCentralF0CSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "CoreBluetooth.CBCentralManager?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CBCentralManager",
+ "printedName": "CoreBluetooth.CBCentralManager",
+ "usr": "c:objc(cs)CBCentralManager"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC9cbManagerSo09CBCentralF0CSgvs",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9cbManagerSo09CBCentralF0CSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC9cbManagerSo09CBCentralF0CSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9cbManagerSo09CBCentralF0CSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bleDevice",
+ "printedName": "bleDevice",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.BleDevice?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)bleDevice",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9bleDeviceAA0bF0CSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.BleDevice?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)bleDevice",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9bleDeviceAA0bF0CSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.BleDevice?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setBleDevice:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9bleDeviceAA0bF0CSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC9bleDeviceAA0bF0CSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9bleDeviceAA0bF0CSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "delegate",
+ "printedName": "delegate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "(any PlaudBleSDK.BleAgentProtocol)?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)delegate",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8delegateAA0bD8Protocol_pSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "ObjC"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.BleAgentProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleAgentProtocol",
+ "printedName": "any PlaudBleSDK.BleAgentProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)delegate",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8delegateAA0bD8Protocol_pSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.BleAgentProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleAgentProtocol",
+ "printedName": "any PlaudBleSDK.BleAgentProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setDelegate:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8delegateAA0bD8Protocol_pSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC8delegateAA0bD8Protocol_pSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8delegateAA0bD8Protocol_pSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "glassDelegate",
+ "printedName": "glassDelegate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "(any PlaudBleSDK.GlassProtocol)?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)glassDelegate",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13glassDelegateAA13GlassProtocol_pSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "ObjC"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.GlassProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GlassProtocol",
+ "printedName": "any PlaudBleSDK.GlassProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)GlassProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)glassDelegate",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13glassDelegateAA13GlassProtocol_pSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.GlassProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GlassProtocol",
+ "printedName": "any PlaudBleSDK.GlassProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)GlassProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setGlassDelegate:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13glassDelegateAA13GlassProtocol_pSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC13glassDelegateAA13GlassProtocol_pSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13glassDelegateAA13GlassProtocol_pSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "otaDelegate",
+ "printedName": "otaDelegate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "(any PlaudBleSDK.OtaProtocol)?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B5AgentC11otaDelegateAA11OtaProtocol_pSgvp",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11otaDelegateAA11OtaProtocol_pSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.OtaProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "OtaProtocol",
+ "printedName": "any PlaudBleSDK.OtaProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)OtaProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC11otaDelegateAA11OtaProtocol_pSgvg",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11otaDelegateAA11OtaProtocol_pSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.OtaProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "OtaProtocol",
+ "printedName": "any PlaudBleSDK.OtaProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)OtaProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC11otaDelegateAA11OtaProtocol_pSgvs",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11otaDelegateAA11OtaProtocol_pSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC11otaDelegateAA11OtaProtocol_pSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11otaDelegateAA11OtaProtocol_pSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bleBlock",
+ "printedName": "bleBlock",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Swift.Int) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B5AgentC8bleBlockySicSgvp",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8bleBlockySicSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Swift.Int) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC8bleBlockySicSgvg",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8bleBlockySicSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Swift.Int) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC8bleBlockySicSgvs",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8bleBlockySicSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC8bleBlockySicSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8bleBlockySicSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "selfSignedHosts",
+ "printedName": "selfSignedHosts",
+ "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:11PlaudBleSDK0B5AgentC15selfSignedHostsSaySSGvp",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15selfSignedHostsSaySSGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "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:11PlaudBleSDK0B5AgentC15selfSignedHostsSaySSGvg",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15selfSignedHostsSaySSGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isPoweredOn",
+ "printedName": "isPoweredOn",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isPoweredOn",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11isPoweredOnSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isPoweredOn",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11isPoweredOnSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isConnected",
+ "printedName": "isConnected",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isConnected",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11isConnectedSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isConnected",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11isConnectedSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isBinded",
+ "printedName": "isBinded",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isBinded",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8isBindedSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isBinded",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8isBindedSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isOnlyOne",
+ "printedName": "isOnlyOne",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isOnlyOne",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9isOnlyOneSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isOnlyOne",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9isOnlyOneSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userToken",
+ "printedName": "userToken",
+ "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:11PlaudBleSDK0B5AgentC9userTokenSSSgvp",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9userTokenSSSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "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:11PlaudBleSDK0B5AgentC9userTokenSSSgvg",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9userTokenSSSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isRecording",
+ "printedName": "isRecording",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isRecording",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11isRecordingSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isRecording",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11isRecordingSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "needDecode",
+ "printedName": "needDecode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)needDecode",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10needDecodeSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)needDecode",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10needDecodeSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isMusic",
+ "printedName": "isMusic",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isMusic",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC7isMusicSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isMusic",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC7isMusicSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "scene",
+ "printedName": "scene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)scene",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC5sceneSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)scene",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC5sceneSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "settingScene",
+ "printedName": "settingScene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)settingScene",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12settingSceneSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)settingScene",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12settingSceneSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sessionId",
+ "printedName": "sessionId",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)sessionId",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9sessionIdSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)sessionId",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9sessionIdSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isDownloading",
+ "printedName": "isDownloading",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isDownloading",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13isDownloadingSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isDownloading",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13isDownloadingSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isWiFiOpen",
+ "printedName": "isWiFiOpen",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isWiFiOpen",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isWiFiOpenSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isWiFiOpen",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isWiFiOpenSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "repeatCommondInterval",
+ "printedName": "repeatCommondInterval",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)repeatCommondInterval",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC21repeatCommondIntervalSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)repeatCommondInterval",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC21repeatCommondIntervalSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setRepeatCommondInterval:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC21repeatCommondIntervalSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC21repeatCommondIntervalSivM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC21repeatCommondIntervalSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "cmdDelegateQueue",
+ "printedName": "cmdDelegateQueue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DispatchQueue",
+ "printedName": "Dispatch.DispatchQueue",
+ "usr": "c:objc(cs)OS_dispatch_queue"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)cmdDelegateQueue",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)cmdDelegateQueue",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setCmdDelegateQueue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "parseQueue",
+ "printedName": "parseQueue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DispatchQueue",
+ "printedName": "Dispatch.DispatchQueue",
+ "usr": "c:objc(cs)OS_dispatch_queue"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B5AgentC10parseQueueSo17OS_dispatch_queueCvp",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10parseQueueSo17OS_dispatch_queueCvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl"
+ ],
+ "isLet": true,
+ "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:11PlaudBleSDK0B5AgentC10parseQueueSo17OS_dispatch_queueCvg",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10parseQueueSo17OS_dispatch_queueCvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customerToken",
+ "printedName": "customerToken",
+ "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:11PlaudBleSDK0B5AgentC13customerTokenSSSgvp",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13customerTokenSSSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "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:11PlaudBleSDK0B5AgentC13customerTokenSSSgvg",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13customerTokenSSSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isUsbState",
+ "printedName": "isUsbState",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isUsbState",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isUsbStateSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Lazy",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isUsbState",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isUsbStateSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setIsUsbState:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isUsbStateSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC10isUsbStateSbvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isUsbStateSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isCharging",
+ "printedName": "isCharging",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)isCharging",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isChargingSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Lazy",
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isCharging",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isChargingSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setIsCharging:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isChargingSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC10isChargingSbvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10isChargingSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "flutterMapData",
+ "printedName": "flutterMapData",
+ "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": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)flutterMapData",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14flutterMapDataSDySSypGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "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": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)flutterMapData",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14flutterMapDataSDySSypGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setFlutterMapData:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14flutterMapDataSDySSypGvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC14flutterMapDataSDySSypGvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14flutterMapDataSDySSypGvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "secretPackages",
+ "printedName": "secretPackages",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Foundation.Data]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)secretPackages",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14secretPackagesSay10Foundation4DataVGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Foundation.Data]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)secretPackages",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14secretPackagesSay10Foundation4DataVGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "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"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setSecretPackages:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14secretPackagesSay10Foundation4DataVGvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC14secretPackagesSay10Foundation4DataVGvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14secretPackagesSay10Foundation4DataVGvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "secretIndex",
+ "printedName": "secretIndex",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)secretIndex",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11secretIndexSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)secretIndex",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11secretIndexSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setSecretIndex:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11secretIndexSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC11secretIndexSivM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11secretIndexSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "secretCount",
+ "printedName": "secretCount",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)secretCount",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11secretCountSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)secretCount",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11secretCountSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setSecretCount:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11secretCountSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC11secretCountSivM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11secretCountSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "chacha20Key",
+ "printedName": "chacha20Key",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)chacha20Key",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11chacha20Key10Foundation4DataVSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)chacha20Key",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11chacha20Key10Foundation4DataVSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setChacha20Key:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11chacha20Key10Foundation4DataVSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC11chacha20Key10Foundation4DataVSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11chacha20Key10Foundation4DataVSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "chacha20Nonce",
+ "printedName": "chacha20Nonce",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)chacha20Nonce",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13chacha20Nonce10Foundation4DataVSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)chacha20Nonce",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13chacha20Nonce10Foundation4DataVSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setChacha20Nonce:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13chacha20Nonce10Foundation4DataVSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC13chacha20Nonce10Foundation4DataVSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13chacha20Nonce10Foundation4DataVSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "chacha20AD",
+ "printedName": "chacha20AD",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)chacha20AD",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10chacha20AD10Foundation4DataVSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)chacha20AD",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10chacha20AD10Foundation4DataVSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setChacha20AD:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10chacha20AD10Foundation4DataVSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC10chacha20AD10Foundation4DataVSgvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10chacha20AD10Foundation4DataVSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "wifiUseAes",
+ "printedName": "wifiUseAes",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)wifiUseAes",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10wifiUseAesSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)wifiUseAes",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10wifiUseAesSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setWifiUseAes:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10wifiUseAesSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC10wifiUseAesSbvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10wifiUseAesSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "globalSendSeq",
+ "printedName": "globalSendSeq",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)globalSendSeq",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13globalSendSeqSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)globalSendSeq",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13globalSendSeqSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setGlobalSendSeq:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13globalSendSeqSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC13globalSendSeqSivM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13globalSendSeqSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "globalReceiveSeq",
+ "printedName": "globalReceiveSeq",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)globalReceiveSeq",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16globalReceiveSeqSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)globalReceiveSeq",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16globalReceiveSeqSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setGlobalReceiveSeq:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16globalReceiveSeqSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC16globalReceiveSeqSivM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16globalReceiveSeqSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "versionType",
+ "printedName": "versionType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)versionType",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11versionTypeSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)versionType",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11versionTypeSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setVersionType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11versionTypeSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC11versionTypeSSvM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11versionTypeSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "versionCode",
+ "printedName": "versionCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(py)versionCode",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11versionCodeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)versionCode",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11versionCodeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setVersionCode:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11versionCodeSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B5AgentC11versionCodeSivM",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11versionCodeSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "setWiFiState",
+ "printedName": "setWiFiState(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setWiFiState:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12setWiFiStateyySbF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setUserIdentifier",
+ "printedName": "setUserIdentifier(_:_:_:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setUserIdentifier:::",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC17setUserIdentifieryySS_SSSbtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "initBluetooth",
+ "printedName": "initBluetooth()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)initBluetooth",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13initBluetoothyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "disInitBluetooth",
+ "printedName": "disInitBluetooth()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)disInitBluetooth",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16disInitBluetoothyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "checkAppKey",
+ "printedName": "checkAppKey(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)checkAppKey:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11checkAppKeyyySSF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setBinding",
+ "printedName": "setBinding(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setBinding:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10setBindingyySSF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setFilter",
+ "printedName": "setFilter(name:)",
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setFilterWithName:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9setFilter4nameySSSg_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setFilterWithName:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setFilter",
+ "printedName": "setFilter(_:)",
+ "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": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setFilter:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9setFilteryySaySSGF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "openLog",
+ "printedName": "openLog(_:logBlock:wlogBlock:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Swift.String) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Swift.String) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)openLog:logBlock:wlogBlock:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC7openLog_8logBlock04wlogH0ySb_ySScSgAGtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isDeviceConnect",
+ "printedName": "isDeviceConnect()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isDeviceConnect",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15isDeviceConnectSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "startScan",
+ "printedName": "startScan()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)startScan",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9startScanyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "startLoopScan",
+ "printedName": "startLoopScan()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)startLoopScan",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13startLoopScanyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stopScan",
+ "printedName": "stopScan()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)stopScan",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8stopScanyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "connectBleDevice",
+ "printedName": "connectBleDevice(bleDevice:_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ },
+ {
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)connectBleDeviceWithBleDevice::::",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC07connectB6Device03bleF0___yAA0bF0C_SSSgAHSbtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "connectBleDeviceWithBleDevice::::",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "disconnect",
+ "printedName": "disconnect()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)disconnect",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10disconnectyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isSNTempChecked",
+ "printedName": "isSNTempChecked()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)isSNTempChecked",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15isSNTempCheckedSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "reCheckSNIfNeed",
+ "printedName": "reCheckSNIfNeed()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)reCheckSNIfNeed",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15reCheckSNIfNeedyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readPower",
+ "printedName": "readPower()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readPower",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9readPoweryyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getChargingState",
+ "printedName": "getChargingState()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getChargingState",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16getChargingStateyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getState",
+ "printedName": "getState()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getState",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8getStateyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "depair",
+ "printedName": "depair(clear:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)depairWithClear:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC6depair5clearySb_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "depairWithClear:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getStorage",
+ "printedName": "getStorage()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getStorage",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10getStorageyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "appResetPassword",
+ "printedName": "appResetPassword()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)appResetPassword",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16appResetPasswordyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readBacklightDuration",
+ "printedName": "readBacklightDuration()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readBacklightDuration",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC21readBacklightDurationyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setBacklightDuration",
+ "printedName": "setBacklightDuration(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setBacklightDurationWithType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC20setBacklightDuration4typeySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setBacklightDurationWithType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setBacklight",
+ "printedName": "setBacklight(duration:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC12setBacklight8durationyAA0F8DurationO_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12setBacklight8durationyAA0F8DurationO_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readBacklightBright",
+ "printedName": "readBacklightBright()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readBacklightBright",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC19readBacklightBrightyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setBacklightBright",
+ "printedName": "setBacklightBright(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setBacklightBrightWithType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC18setBacklightBright4typeySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setBacklightBrightWithType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setBacklight",
+ "printedName": "setBacklight(bright:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC12setBacklight6brightyAA0F6BrightO_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12setBacklight6brightyAA0F6BrightO_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readLanguage",
+ "printedName": "readLanguage()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readLanguage",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12readLanguageyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setLanguage",
+ "printedName": "setLanguage(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setLanguageWithType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11setLanguage4typeySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setLanguageWithType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setLanguage",
+ "printedName": "setLanguage(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "LanguageType",
+ "printedName": "PlaudBleSDK.LanguageType",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC11setLanguage4typeyAA0F4TypeO_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11setLanguage4typeyAA0F4TypeO_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "openVAD",
+ "printedName": "openVAD(open:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC7openVAD0E0ySb_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC7openVAD0E0ySb_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setRecScene",
+ "printedName": "setRecScene(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setRecSceneWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11setRecScene5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setRecSceneWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setRecScene",
+ "printedName": "setRecScene(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC11setRecScene4typeyAA0fG0O_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11setRecScene4typeyAA0fG0O_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readRecScene",
+ "printedName": "readRecScene()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readRecScene",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12readRecSceneyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setRecMode",
+ "printedName": "setRecMode(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setRecModeWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10setRecMode5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setRecModeWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setRecMode",
+ "printedName": "setRecMode(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "RecMode",
+ "printedName": "PlaudBleSDK.RecMode",
+ "usr": "s:11PlaudBleSDK7RecModeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC10setRecMode4typeyAA0fG0O_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10setRecMode4typeyAA0fG0O_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readRecMode",
+ "printedName": "readRecMode()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readRecMode",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11readRecModeyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setVadSensitivity",
+ "printedName": "setVadSensitivity(sensitivity:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setVadSensitivityWithSensitivity:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC17setVadSensitivity11sensitivityySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setVadSensitivityWithSensitivity:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setVadSensitivity",
+ "printedName": "setVadSensitivity(sensitivity:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC17setVadSensitivity11sensitivityyAA0fG0O_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC17setVadSensitivity11sensitivityyAA0fG0O_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readVadSensitivity",
+ "printedName": "readVadSensitivity()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readVadSensitivity",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC18readVadSensitivityyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setVpuGain",
+ "printedName": "setVpuGain(gain:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setVpuGainWithGain:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10setVpuGain4gainySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setVpuGainWithGain:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setVpuGain",
+ "printedName": "setVpuGain(gain:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "VpuGain",
+ "printedName": "PlaudBleSDK.VpuGain",
+ "usr": "s:11PlaudBleSDK7VpuGainO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC10setVpuGain4gainyAA0fG0O_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10setVpuGain4gainyAA0fG0O_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readVpuGain",
+ "printedName": "readVpuGain()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readVpuGain",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11readVpuGainyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setMicGain",
+ "printedName": "setMicGain(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setMicGainWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10setMicGain5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setMicGainWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readBatteryMode",
+ "printedName": "readBatteryMode()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readBatteryMode",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15readBatteryModeyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setBatteryMode",
+ "printedName": "setBatteryMode(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setBatteryModeWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14setBatteryMode5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setBatteryModeWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readMicGain",
+ "printedName": "readMicGain()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readMicGain",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11readMicGainyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setSwitchHandler",
+ "printedName": "setSwitchHandler(id:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setSwitchHandlerWithId:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16setSwitchHandler2idySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setSwitchHandlerWithId:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readSwitchHandler",
+ "printedName": "readSwitchHandler()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readSwitchHandler",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC17readSwitchHandleryyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setAutoPowerOff",
+ "printedName": "setAutoPowerOff(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setAutoPowerOffWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15setAutoPowerOff5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setAutoPowerOffWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readAutoPowerOff",
+ "printedName": "readAutoPowerOff()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readAutoPowerOff",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16readAutoPowerOffyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setRawWaveEnabled",
+ "printedName": "setRawWaveEnabled(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setRawWaveEnabledWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC17setRawWaveEnabled5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setRawWaveEnabledWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readRawWaveEnabled",
+ "printedName": "readRawWaveEnabled()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readRawWaveEnabled",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC18readRawWaveEnabledyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readRecordingAfterDisConnetEnabled",
+ "printedName": "readRecordingAfterDisConnetEnabled()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readRecordingAfterDisConnetEnabled",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC34readRecordingAfterDisConnetEnabledyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setRecordingAfterDisConnetEnabled",
+ "printedName": "setRecordingAfterDisConnetEnabled(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setRecordingAfterDisConnetEnabledWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC33setRecordingAfterDisConnetEnabled5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setRecordingAfterDisConnetEnabledWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readSyncWhenIdleEnabled",
+ "printedName": "readSyncWhenIdleEnabled()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readSyncWhenIdleEnabled",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC23readSyncWhenIdleEnabledyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setSyncWhenIdleEnabled",
+ "printedName": "setSyncWhenIdleEnabled(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setSyncWhenIdleEnabledWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC22setSyncWhenIdleEnabled5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setSyncWhenIdleEnabledWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setFindMyState",
+ "printedName": "setFindMyState(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setFindMyStateWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14setFindMyState5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setFindMyStateWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readFindMyState",
+ "printedName": "readFindMyState()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readFindMyState",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15readFindMyStateyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setVPUCLK",
+ "printedName": "setVPUCLK(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setVPUCLKWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9setVPUCLK5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setVPUCLKWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readVPUCLK",
+ "printedName": "readVPUCLK()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readVPUCLK",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10readVPUCLKyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setStopRecordingAfterCharging",
+ "printedName": "setStopRecordingAfterCharging(value:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setStopRecordingAfterChargingWithValue:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC29setStopRecordingAfterCharging5valueySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setStopRecordingAfterChargingWithValue:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readStopRecordingAfterCharging",
+ "printedName": "readStopRecordingAfterCharging()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readStopRecordingAfterCharging",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC30readStopRecordingAfterChargingyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setBleName",
+ "printedName": "setBleName(name:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setBleNameWithName:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC03setB4Name4nameySS_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setBleNameWithName:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getDeviceLogList",
+ "printedName": "getDeviceLogList(logType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getDeviceLogListWithLogType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16getDeviceLogList7logTypeySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "getDeviceLogListWithLogType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "startSyncDeviceLogFile",
+ "printedName": "startSyncDeviceLogFile(logType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)startSyncDeviceLogFileWithLogType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC22startSyncDeviceLogFile7logTypeySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "startSyncDeviceLogFileWithLogType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stopSyncDeviceLogFile",
+ "printedName": "stopSyncDeviceLogFile()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)stopSyncDeviceLogFile",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC21stopSyncDeviceLogFileyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "deleteDeviceLogFile",
+ "printedName": "deleteDeviceLogFile(logType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)deleteDeviceLogFileWithLogType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC19deleteDeviceLogFile7logTypeySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "deleteDeviceLogFileWithLogType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readBleName",
+ "printedName": "readBleName()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readBleName",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC04readB4NameyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "operateWiFi",
+ "printedName": "operateWiFi(open:isOTA:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)operateWiFiWithOpen:isOTA:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11operateWiFi4open5isOTAySb_SbtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "operateWiFiWithOpen:isOTA:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readGlassData",
+ "printedName": "readGlassData(uid:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readGlassDataWithUid:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13readGlassData3uidySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "readGlassDataWithUid:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "clearGlassData",
+ "printedName": "clearGlassData()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)clearGlassData",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14clearGlassDatayyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readAutoClear",
+ "printedName": "readAutoClear()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)readAutoClear",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13readAutoClearyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "saveAutoClear",
+ "printedName": "saveAutoClear(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)saveAutoClear:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13saveAutoClearyySbF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "startRecord",
+ "printedName": "startRecord(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)startRecord:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11startRecordyySiF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stopRecord",
+ "printedName": "stopRecord()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)stopRecord",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10stopRecordyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "pauseRecord",
+ "printedName": "pauseRecord(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)pauseRecord:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11pauseRecordyySiF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "resumeRecord",
+ "printedName": "resumeRecord(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)resumeRecord:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12resumeRecordyySiF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getLedState",
+ "printedName": "getLedState()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getLedState",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11getLedStateyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setLedState",
+ "printedName": "setLedState(onOff:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setLedStateOnOff:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11setLedState5onOffySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setLedStateOnOff:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getFileList",
+ "printedName": "getFileList(uid:sessionId:onlyOne:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getFileListWithUid:sessionId:onlyOne:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11getFileList3uid9sessionId7onlyOneySi_SiSbtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "getFileListWithUid:sessionId:onlyOne:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "syncFile",
+ "printedName": "syncFile(sessionId:start:end:decode:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)syncFileWithSessionId:start:end:decode:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8syncFile9sessionId5start3end6decodeySi_S2iSbtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "syncFileWithSessionId:start:end:decode:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stopSyncFile",
+ "printedName": "stopSyncFile()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)stopSyncFile",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12stopSyncFileyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "deleteFile",
+ "printedName": "deleteFile(sessionId:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)deleteFileWithSessionId:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10deleteFile9sessionIdySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "deleteFileWithSessionId:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getMarking",
+ "printedName": "getMarking(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getMarking:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10getMarkingyySiF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getRecordMarkingTags",
+ "printedName": "getRecordMarkingTags(uid:startTimestamp:endTimestamp:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getRecordMarkingTagsWithUid:startTimestamp:endTimestamp:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC20getRecordMarkingTags3uid14startTimestamp03endK0ySi_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "getRecordMarkingTagsWithUid:startTimestamp:endTimestamp:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "pushFotaInfo",
+ "printedName": "pushFotaInfo(_:_:_:_:_:_:)",
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)pushFotaInfo::::::",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12pushFotaInfoyySi_S2SS3itF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "pushFotaInfo",
+ "printedName": "pushFotaInfo(_:_:_:_:_:_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Character",
+ "printedName": "Swift.Character",
+ "usr": "s:SJ"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Character",
+ "printedName": "Swift.Character",
+ "usr": "s:SJ"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "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:11PlaudBleSDK0B5AgentC12pushFotaInfoyySi_SiSJSiSJS3itF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12pushFotaInfoyySi_SiSJSiSJS3itF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "pushFotaInfo",
+ "printedName": "pushFotaInfo(_:_:_:_:_:_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)pushFotaInfo::::::::",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12pushFotaInfoyySi_SiSSSiSSS3itF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "pushFotaComplete",
+ "printedName": "pushFotaComplete(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)pushFotaComplete::",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC16pushFotaCompleteyySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "pushFotaPack",
+ "printedName": "pushFotaPack(_:packData:postDelayUs:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)pushFotaPack:packData:postDelayUs:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12pushFotaPack_8packData11postDelayUsySi_10Foundation0I0VSo8NSNumberCSgtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "canSendWithoutResponse",
+ "printedName": "canSendWithoutResponse()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)canSendWithoutResponse",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC22canSendWithoutResponseSbyF",
+ "moduleName": "PlaudBleSDK",
+ "intro_iOS": "11.0",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "startBleRateTest",
+ "printedName": "startBleRateTest(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC05startB8RateTestyySiF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC05startB8RateTestyySiF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stopBleRateTest",
+ "printedName": "stopBleRateTest()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC04stopB8RateTestyyF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC04stopB8RateTestyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "restoreFactory",
+ "printedName": "restoreFactory()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)restoreFactory",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14restoreFactoryyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setPrivacy",
+ "printedName": "setPrivacy(onOff:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setPrivacyOnOff:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10setPrivacy5onOffySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setPrivacyOnOff:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "clearAllFile",
+ "printedName": "clearAllFile()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)clearAllFile",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12clearAllFileyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setDeviceActive",
+ "printedName": "setDeviceActive(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setDeviceActiveWithStatus:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15setDeviceActive6statusySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setDeviceActiveWithStatus:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setHeartBeat",
+ "printedName": "setHeartBeat(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setHeartBeatWithStatus:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC12setHeartBeat6statusySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setHeartBeatWithStatus:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setWiFiSsid",
+ "printedName": "setWiFiSsid(ssid:password:isTest:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setWiFiSsidWithSsid:password:isTest:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11setWiFiSsid4ssid8password6isTestySS_SSSbtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setWiFiSsidWithSsid:password:isTest:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getWiFiSsid",
+ "printedName": "getWiFiSsid()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getWiFiSsid",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11getWiFiSsidyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getUpdateInfo",
+ "printedName": "getUpdateInfo(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int, PlaudBleSDK.UpdateInfo?) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Int, PlaudBleSDK.UpdateInfo?)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.UpdateInfo?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UpdateInfo",
+ "printedName": "PlaudBleSDK.UpdateInfo",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getUpdateInfo:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13getUpdateInfoyyySi_AA0fG0CSgtcF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setWebsocketProfile",
+ "printedName": "setWebsocketProfile(type:content:)",
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setWebsocketProfileWithType:content:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC19setWebsocketProfile4type7contentySi_SStF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setWebsocketProfileWithType:content:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setWebsocketProfile",
+ "printedName": "setWebsocketProfile(type:content:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC19setWebsocketProfile4type7contentyAA0F4TypeO_SStF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC19setWebsocketProfile4type7contentyAA0F4TypeO_SStF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getWebsocketProfile",
+ "printedName": "getWebsocketProfile(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getWebsocketProfileWithType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC19getWebsocketProfile4typeySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "getWebsocketProfileWithType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getWebsocketProfile",
+ "printedName": "getWebsocketProfile(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC19getWebsocketProfile4typeyAA0F4TypeO_tF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC19getWebsocketProfile4typeyAA0F4TypeO_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "testWebsocket",
+ "printedName": "testWebsocket()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)testWebsocket",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13testWebsocketyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setAlarmRec",
+ "printedName": "setAlarmRec(start:duration:repeatMode:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setAlarmRecWithStart:duration:repeatMode:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11setAlarmRec5start8duration10repeatModeySi_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setAlarmRecWithStart:duration:repeatMode:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getAlarmRec",
+ "printedName": "getAlarmRec()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getAlarmRec",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11getAlarmRecyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendBinFileInfo",
+ "printedName": "sendBinFileInfo(type:totalSize:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)sendBinFileInfoWithType:totalSize:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15sendBinFileInfo4type9totalSizeySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "sendBinFileInfoWithType:totalSize:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendBinFileData",
+ "printedName": "sendBinFileData(type:packageOffset:packageSize:data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)sendBinFileDataWithType:packageOffset:packageSize:data:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15sendBinFileData4type13packageOffset0J4Size4dataySi_S2i10Foundation0H0VtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "sendBinFileDataWithType:packageOffset:packageSize:data:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendBinFileCheckSumResult",
+ "printedName": "sendBinFileCheckSumResult(type:crc:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)sendBinFileCheckSumResultWithType:crc:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC25sendBinFileCheckSumResult4type3crcySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "sendBinFileCheckSumResultWithType:crc:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getSyncInIdleWifiConfig",
+ "printedName": "getSyncInIdleWifiConfig(wifiIndex:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getSyncInIdleWifiConfigWithWifiIndex:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC23getSyncInIdleWifiConfig9wifiIndexys6UInt32V_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "getSyncInIdleWifiConfigWithWifiIndex:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setSyncInIdleWifiConfig",
+ "printedName": "setSyncInIdleWifiConfig(operation:wifiIndex:ssid:password:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setSyncInIdleWifiConfigWithOperation:wifiIndex:ssid:password:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC23setSyncInIdleWifiConfig9operation9wifiIndex4ssid8passwordySi_s6UInt32VS2StF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setSyncInIdleWifiConfigWithOperation:wifiIndex:ssid:password:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "deleteSyncInIdleWifiConfig",
+ "printedName": "deleteSyncInIdleWifiConfig(wifiIndices:)",
+ "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"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)deleteSyncInIdleWifiConfigWithWifiIndices:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC26deleteSyncInIdleWifiConfig11wifiIndicesySays6UInt32VG_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "deleteSyncInIdleWifiConfigWithWifiIndices:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "resetFindmy",
+ "printedName": "resetFindmy()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)resetFindmy",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11resetFindmyyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getSyncInIdleWifiList",
+ "printedName": "getSyncInIdleWifiList()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getSyncInIdleWifiList",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC21getSyncInIdleWifiListyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setSyncInIdleWifiTest",
+ "printedName": "setSyncInIdleWifiTest(wifiIndex:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setSyncInIdleWifiTestWithWifiIndex:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC21setSyncInIdleWifiTest9wifiIndexys6UInt32V_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setSyncInIdleWifiTestWithWifiIndex:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getSyncInIdleWifiTestResult",
+ "printedName": "getSyncInIdleWifiTestResult(wifiIndex:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getSyncInIdleWifiTestResultWithWifiIndex:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC27getSyncInIdleWifiTestResult9wifiIndexys6UInt32V_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "getSyncInIdleWifiTestResultWithWifiIndex:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setSoundPlusToken",
+ "printedName": "setSoundPlusToken(licenseKey:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setSoundPlusTokenWithLicenseKey:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC17setSoundPlusToken10licenseKeyySS_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setSoundPlusTokenWithLicenseKey:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setCommonParams",
+ "printedName": "setCommonParams(dataType:value:)",
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)setCommonParamsWithDataType:value:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15setCommonParams8dataType5valueySi_SStF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setCommonParamsWithDataType:value:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getCommonParams",
+ "printedName": "getCommonParams(dataType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getCommonParamsWithDataType:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15getCommonParams8dataTypeySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "getCommonParamsWithDataType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getSDFLASHCID",
+ "printedName": "getSDFLASHCID()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getSDFLASHCID",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13getSDFLASHCIDyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getNewFeature",
+ "printedName": "getNewFeature(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getNewFeature:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC13getNewFeatureyy10Foundation4DataVF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getDeviceStatus",
+ "printedName": "getDeviceStatus()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent(im)getDeviceStatus",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15getDeviceStatusyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "centralManagerDidUpdateState",
+ "printedName": "centralManagerDidUpdateState(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBCentralManager",
+ "printedName": "CoreBluetooth.CBCentralManager",
+ "usr": "c:objc(cs)CBCentralManager"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)centralManagerDidUpdateState:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC28centralManagerDidUpdateStateyySo09CBCentralF0CF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "centralManagerDidUpdateState:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "centralManager",
+ "printedName": "centralManager(_:didDiscover:advertisementData:rssi:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBCentralManager",
+ "printedName": "CoreBluetooth.CBCentralManager",
+ "usr": "c:objc(cs)CBCentralManager"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "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"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)centralManager:didDiscoverPeripheral:advertisementData:RSSI:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14centralManager_11didDiscover17advertisementData4rssiySo09CBCentralF0C_So12CBPeripheralCSDySSypGSo8NSNumberCtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "centralManager:didDiscoverPeripheral:advertisementData:RSSI:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "centralManager",
+ "printedName": "centralManager(_:didConnect:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBCentralManager",
+ "printedName": "CoreBluetooth.CBCentralManager",
+ "usr": "c:objc(cs)CBCentralManager"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)centralManager:didConnectPeripheral:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14centralManager_10didConnectySo09CBCentralF0C_So12CBPeripheralCtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "centralManager:didConnectPeripheral:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "centralManager",
+ "printedName": "centralManager(_:didFailToConnect:error:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBCentralManager",
+ "printedName": "CoreBluetooth.CBCentralManager",
+ "usr": "c:objc(cs)CBCentralManager"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any Swift.Error)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "any Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)centralManager:didFailToConnectPeripheral:error:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14centralManager_16didFailToConnect5errorySo09CBCentralF0C_So12CBPeripheralCs5Error_pSgtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "centralManager:didFailToConnectPeripheral:error:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "centralManager",
+ "printedName": "centralManager(_:didDisconnectPeripheral:error:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBCentralManager",
+ "printedName": "CoreBluetooth.CBCentralManager",
+ "usr": "c:objc(cs)CBCentralManager"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any Swift.Error)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "any Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)centralManager:didDisconnectPeripheral:error:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC14centralManager_23didDisconnectPeripheral5errorySo09CBCentralF0C_So12CBPeripheralCs5Error_pSgtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "centralManager:didDisconnectPeripheral:error:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isAuthOk",
+ "printedName": "isAuthOk()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)isAuthOk",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC8isAuthOkSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "toSingleChannel",
+ "printedName": "toSingleChannel(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)toSingleChannel:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15toSingleChannely10Foundation4DataVAGF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onPcmData",
+ "printedName": "onPcmData(_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)onPcmData:::",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC9onPcmDatayySi_Si10Foundation0G0VtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "onPcmData:::",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onDecodeErr",
+ "printedName": "onDecodeErr(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)onDecodeErr:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC11onDecodeErryySiF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "onDecodeErr:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "urlSession",
+ "printedName": "urlSession(_:didReceive:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URLSession",
+ "printedName": "Foundation.URLSession",
+ "usr": "c:objc(cs)NSURLSession"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URLAuthenticationChallenge",
+ "printedName": "Foundation.URLAuthenticationChallenge",
+ "usr": "c:objc(cs)NSURLAuthenticationChallenge"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AuthChallengeDisposition",
+ "printedName": "Foundation.URLSession.AuthChallengeDisposition",
+ "usr": "c:@E@NSURLSessionAuthChallengeDisposition"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URLCredential?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URLCredential",
+ "printedName": "Foundation.URLCredential",
+ "usr": "c:objc(cs)NSURLCredential"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleAgent(im)URLSession:didReceiveChallenge:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC10urlSession_10didReceive17completionHandlerySo12NSURLSessionC_So28NSURLAuthenticationChallengeCySo0k4AuthM11DispositionV_So15NSURLCredentialCSgtctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "URLSession:didReceiveChallenge:completionHandler:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "selfSignedTrust",
+ "printedName": "selfSignedTrust(session:challenge:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AuthChallengeDisposition",
+ "printedName": "Foundation.URLSession.AuthChallengeDisposition",
+ "usr": "c:@E@NSURLSessionAuthChallengeDisposition"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URLCredential?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URLCredential",
+ "printedName": "Foundation.URLCredential",
+ "usr": "c:objc(cs)NSURLCredential"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URLSession",
+ "printedName": "Foundation.URLSession",
+ "usr": "c:objc(cs)NSURLSession"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "URLAuthenticationChallenge",
+ "printedName": "Foundation.URLAuthenticationChallenge",
+ "usr": "c:objc(cs)NSURLAuthenticationChallenge"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B5AgentC15selfSignedTrust7session9challengeSo36NSURLSessionAuthChallengeDispositionV_So15NSURLCredentialCSgtSo0J0C_So019NSURLAuthenticationL0CtF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC15selfSignedTrust7session9challengeSo36NSURLSessionAuthChallengeDispositionV_So15NSURLCredentialCSgtSo0J0C_So019NSURLAuthenticationL0CtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "dataOfGetRecordMarkingTags",
+ "printedName": "dataOfGetRecordMarkingTags(uid:startTimestamp:endTimestamp:)",
+ "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:11PlaudBleSDK0B5AgentC26dataOfGetRecordMarkingTags3uid14startTimestamp03endM010Foundation4DataVSi_S2itF",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC26dataOfGetRecordMarkingTags3uid14startTimestamp03endM010Foundation4DataVSi_S2itF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent",
+ "mangledName": "$s11PlaudBleSDK0B5AgentC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "Conformance",
+ "name": "JXPcmProcessDelegate",
+ "printedName": "JXPcmProcessDelegate",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate",
+ "mangledName": "$s11PlaudBleSDK20JXPcmProcessDelegateP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "CustomerAuth",
+ "printedName": "CustomerAuth",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "temp",
+ "printedName": "temp",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CustomerAuth.Type) -> PlaudBleSDK.CustomerAuth",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CustomerAuth",
+ "printedName": "PlaudBleSDK.CustomerAuth",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CustomerAuth.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CustomerAuth",
+ "printedName": "PlaudBleSDK.CustomerAuth",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO4tempyA2CmF",
+ "mangledName": "$s11PlaudBleSDK12CustomerAuthO4tempyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "notRestricted",
+ "printedName": "notRestricted",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CustomerAuth.Type) -> PlaudBleSDK.CustomerAuth",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CustomerAuth",
+ "printedName": "PlaudBleSDK.CustomerAuth",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CustomerAuth.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CustomerAuth",
+ "printedName": "PlaudBleSDK.CustomerAuth",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO13notRestrictedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK12CustomerAuthO13notRestrictedyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "restricted",
+ "printedName": "restricted",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CustomerAuth.Type) -> PlaudBleSDK.CustomerAuth",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CustomerAuth",
+ "printedName": "PlaudBleSDK.CustomerAuth",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CustomerAuth.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CustomerAuth",
+ "printedName": "PlaudBleSDK.CustomerAuth",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO10restrictedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK12CustomerAuthO10restrictedyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CustomerAuth",
+ "printedName": "PlaudBleSDK.CustomerAuth",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CustomerAuth",
+ "printedName": "PlaudBleSDK.CustomerAuth",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s11PlaudBleSDK12CustomerAuthO2eeoiySbAC_ACtFZ",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK12CustomerAuthO9hashValueSivp",
+ "mangledName": "$s11PlaudBleSDK12CustomerAuthO9hashValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO9hashValueSivg",
+ "mangledName": "$s11PlaudBleSDK12CustomerAuthO9hashValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK12CustomerAuthO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s11PlaudBleSDK12CustomerAuthO4hash4intoys6HasherVz_tF",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK12CustomerAuthO",
+ "mangledName": "$s11PlaudBleSDK12CustomerAuthO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "SSNAuth",
+ "printedName": "SSNAuth",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "temp",
+ "printedName": "temp",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SSNAuth.Type) -> PlaudBleSDK.SSNAuth",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SSNAuth",
+ "printedName": "PlaudBleSDK.SSNAuth",
+ "usr": "s:11PlaudBleSDK7SSNAuthO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SSNAuth.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SSNAuth",
+ "printedName": "PlaudBleSDK.SSNAuth",
+ "usr": "s:11PlaudBleSDK7SSNAuthO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK7SSNAuthO4tempyA2CmF",
+ "mangledName": "$s11PlaudBleSDK7SSNAuthO4tempyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "notRestricted",
+ "printedName": "notRestricted",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SSNAuth.Type) -> PlaudBleSDK.SSNAuth",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SSNAuth",
+ "printedName": "PlaudBleSDK.SSNAuth",
+ "usr": "s:11PlaudBleSDK7SSNAuthO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SSNAuth.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SSNAuth",
+ "printedName": "PlaudBleSDK.SSNAuth",
+ "usr": "s:11PlaudBleSDK7SSNAuthO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK7SSNAuthO13notRestrictedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK7SSNAuthO13notRestrictedyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "restricted",
+ "printedName": "restricted",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SSNAuth.Type) -> PlaudBleSDK.SSNAuth",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SSNAuth",
+ "printedName": "PlaudBleSDK.SSNAuth",
+ "usr": "s:11PlaudBleSDK7SSNAuthO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SSNAuth.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SSNAuth",
+ "printedName": "PlaudBleSDK.SSNAuth",
+ "usr": "s:11PlaudBleSDK7SSNAuthO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK7SSNAuthO10restrictedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK7SSNAuthO10restrictedyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SSNAuth",
+ "printedName": "PlaudBleSDK.SSNAuth",
+ "usr": "s:11PlaudBleSDK7SSNAuthO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SSNAuth",
+ "printedName": "PlaudBleSDK.SSNAuth",
+ "usr": "s:11PlaudBleSDK7SSNAuthO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK7SSNAuthO2eeoiySbAC_ACtFZ",
+ "mangledName": "$s11PlaudBleSDK7SSNAuthO2eeoiySbAC_ACtFZ",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK7SSNAuthO9hashValueSivp",
+ "mangledName": "$s11PlaudBleSDK7SSNAuthO9hashValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK7SSNAuthO9hashValueSivg",
+ "mangledName": "$s11PlaudBleSDK7SSNAuthO9hashValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK7SSNAuthO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s11PlaudBleSDK7SSNAuthO4hash4intoys6HasherVz_tF",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK7SSNAuthO",
+ "mangledName": "$s11PlaudBleSDK7SSNAuthO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "CoreBluetooth",
+ "printedName": "CoreBluetooth",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "BleDevice",
+ "printedName": "BleDevice",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "peripheral",
+ "printedName": "peripheral",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "CoreBluetooth.CBPeripheral?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B6DeviceC10peripheralSo12CBPeripheralCSgvp",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheralSo12CBPeripheralCSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "CoreBluetooth.CBPeripheral?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC10peripheralSo12CBPeripheralCSgvg",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheralSo12CBPeripheralCSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ImplicitlyUnwrappedOptional",
+ "printedName": "CoreBluetooth.CBPeripheral?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC10peripheralSo12CBPeripheralCSgvs",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheralSo12CBPeripheralCSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC10peripheralSo12CBPeripheralCSgvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheralSo12CBPeripheralCSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "name",
+ "printedName": "name",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)name",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4nameSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)name",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4nameSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setName:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4nameSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC4nameSSvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4nameSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uuid",
+ "printedName": "uuid",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)uuid",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4uuidSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)uuid",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4uuidSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setUuid:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4uuidSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC4uuidSSvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4uuidSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rssi",
+ "printedName": "rssi",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Float",
+ "printedName": "Swift.Float",
+ "usr": "s:Sf"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)rssi",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4rssiSfvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Float",
+ "printedName": "Swift.Float",
+ "usr": "s:Sf"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)rssi",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4rssiSfvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setRssi:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4rssiSfvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC4rssiSfvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4rssiSfvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "manufacturer",
+ "printedName": "manufacturer",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)manufacturer",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12manufacturerSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)manufacturer",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12manufacturerSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setManufacturer:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12manufacturerSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC12manufacturerSSvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12manufacturerSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "projectCode",
+ "printedName": "projectCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)projectCode",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11projectCodeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)projectCode",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11projectCodeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setProjectCode:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11projectCodeSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11projectCodeSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11projectCodeSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "versionType",
+ "printedName": "versionType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Character",
+ "printedName": "Swift.Character",
+ "usr": "s:SJ"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11versionTypeSJvp",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11versionTypeSJvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Character",
+ "printedName": "Swift.Character",
+ "usr": "s:SJ"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11versionTypeSJvg",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11versionTypeSJvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Character",
+ "printedName": "Swift.Character",
+ "usr": "s:SJ"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11versionTypeSJvs",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11versionTypeSJvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11versionTypeSJvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11versionTypeSJvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "versionTypeStr",
+ "printedName": "versionTypeStr",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)versionTypeStr",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC14versionTypeStrSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)versionTypeStr",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC14versionTypeStrSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setVersionTypeStr:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC14versionTypeStrSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC14versionTypeStrSSvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC14versionTypeStrSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "versionCode",
+ "printedName": "versionCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)versionCode",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11versionCodeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)versionCode",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11versionCodeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setVersionCode:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11versionCodeSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11versionCodeSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11versionCodeSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "serialNumber",
+ "printedName": "serialNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)serialNumber",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12serialNumberSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)serialNumber",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12serialNumberSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setSerialNumber:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12serialNumberSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC12serialNumberSSvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12serialNumberSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bindCode",
+ "printedName": "bindCode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)bindCode",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8bindCodeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)bindCode",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8bindCodeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setBindCode:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8bindCodeSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC8bindCodeSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8bindCodeSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "power",
+ "printedName": "power",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)power",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5powerSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)power",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5powerSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setPower:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5powerSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC5powerSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5powerSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isCharging",
+ "printedName": "isCharging",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)isCharging",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10isChargingSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)isCharging",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10isChargingSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setIsCharging:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10isChargingSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC10isChargingSbvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10isChargingSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "total",
+ "printedName": "total",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)total",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5totalSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)total",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5totalSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setTotal:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5totalSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC5totalSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5totalSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "free",
+ "printedName": "free",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)free",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4freeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)free",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4freeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setFree:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4freeSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC4freeSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC4freeSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "duration",
+ "printedName": "duration",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)duration",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8durationSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)duration",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8durationSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setDuration:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8durationSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC8durationSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8durationSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "timezone",
+ "printedName": "timezone",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)timezone",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8timezoneSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)timezone",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8timezoneSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setTimezone:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8timezoneSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC8timezoneSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8timezoneSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "zoneMin",
+ "printedName": "zoneMin",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)zoneMin",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7zoneMinSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)zoneMin",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7zoneMinSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setZoneMin:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7zoneMinSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC7zoneMinSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7zoneMinSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "channels",
+ "printedName": "channels",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)channels",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8channelsSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)channels",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8channelsSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setChannels:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8channelsSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC8channelsSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8channelsSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "supportWiFi",
+ "printedName": "supportWiFi",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)supportWiFi",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11supportWiFiSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)supportWiFi",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11supportWiFiSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setSupportWiFi:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11supportWiFiSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11supportWiFiSbvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11supportWiFiSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "nsAgc",
+ "printedName": "nsAgc",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)nsAgc",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5nsAgcSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)nsAgc",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5nsAgcSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setNsAgc:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5nsAgcSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC5nsAgcSbvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5nsAgcSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isOgg",
+ "printedName": "isOgg",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)isOgg",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5isOggSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)isOgg",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5isOggSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setIsOgg:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5isOggSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC5isOggSbvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5isOggSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "autoClear",
+ "printedName": "autoClear",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)autoClear",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9autoClearSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)autoClear",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9autoClearSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setAutoClear:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9autoClearSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC9autoClearSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9autoClearSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "hideLed",
+ "printedName": "hideLed",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)hideLed",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7hideLedSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)hideLed",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7hideLedSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setHideLed:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7hideLedSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC7hideLedSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7hideLedSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "state",
+ "printedName": "state",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)state",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5stateSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)state",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5stateSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setState:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5stateSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC5stateSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5stateSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "privacy",
+ "printedName": "privacy",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)privacy",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7privacySivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)privacy",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7privacySivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setPrivacy:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7privacySivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC7privacySivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7privacySivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "keyState",
+ "printedName": "keyState",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)keyState",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8keyStateSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)keyState",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8keyStateSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setKeyState:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8keyStateSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC8keyStateSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8keyStateSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uDisk",
+ "printedName": "uDisk",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)uDisk",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5uDiskSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)uDisk",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5uDiskSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setUDisk:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5uDiskSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC5uDiskSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC5uDiskSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "findmyToken",
+ "printedName": "findmyToken",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)findmyToken",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11findmyTokenSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)findmyToken",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11findmyTokenSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setFindmyToken:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11findmyTokenSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11findmyTokenSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11findmyTokenSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "hasFota",
+ "printedName": "hasFota",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)hasFota",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7hasFotaSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)hasFota",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7hasFotaSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)setHasFota:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7hasFotaSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC7hasFotaSbvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC7hasFotaSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "ssn",
+ "printedName": "ssn",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B6DeviceC3ssnSSvp",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC3ssnSSvp",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK0B6DeviceC3ssnSSvg",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC3ssnSSvg",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK0B6DeviceC3ssnSSvs",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC3ssnSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC3ssnSSvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC3ssnSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "protVersion",
+ "printedName": "protVersion",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11protVersionSivp",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11protVersionSivp",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK0B6DeviceC11protVersionSivg",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11protVersionSivg",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK0B6DeviceC11protVersionSivs",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11protVersionSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC11protVersionSivM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC11protVersionSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isVadOpen",
+ "printedName": "isVadOpen",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B6DeviceC9isVadOpenSbvp",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9isVadOpenSbvp",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK0B6DeviceC9isVadOpenSbvg",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9isVadOpenSbvg",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK0B6DeviceC9isVadOpenSbvs",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9isVadOpenSbvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6DeviceC9isVadOpenSbvM",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9isVadOpenSbvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "wholeName",
+ "printedName": "wholeName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)wholeName",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9wholeNameSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)wholeName",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC9wholeNameSSvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "wifiName",
+ "printedName": "wifiName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(py)wifiName",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8wifiNameSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)wifiName",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8wifiNameSSvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(sn:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)initWithSn:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC2snACSS_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithSn:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(peripheral:rssi:manufacturerData:localName:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "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:11PlaudBleSDK0B6DeviceC10peripheral4rssi16manufacturerData9localNameACSo12CBPeripheralC_So8NSNumberC10Foundation0H0VSSSgtcfc",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheral4rssi16manufacturerData9localNameACSo12CBPeripheralC_So8NSNumberC10Foundation0H0VSSSgtcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "wholeVersion",
+ "printedName": "wholeVersion()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)wholeVersion",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC12wholeVersionSSyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "toString",
+ "printedName": "toString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)toString",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC8toStringSSyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "zoneSecond",
+ "printedName": "zoneSecond()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)zoneSecond",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10zoneSecondSiyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice(im)init",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "peripheral",
+ "printedName": "peripheral(_:didDiscoverServices:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any Swift.Error)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "any Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleDevice(im)peripheral:didDiscoverServices:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheral_19didDiscoverServicesySo12CBPeripheralC_s5Error_pSgtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "peripheral:didDiscoverServices:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "peripheral",
+ "printedName": "peripheral(_:didDiscoverCharacteristicsFor:error:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBService",
+ "printedName": "CoreBluetooth.CBService",
+ "usr": "c:objc(cs)CBService"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any Swift.Error)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "any Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleDevice(im)peripheral:didDiscoverCharacteristicsForService:error:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheral_29didDiscoverCharacteristicsFor5errorySo12CBPeripheralC_So9CBServiceCs5Error_pSgtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "peripheral:didDiscoverCharacteristicsForService:error:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "peripheral",
+ "printedName": "peripheral(_:didUpdateNotificationStateFor:error:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBCharacteristic",
+ "printedName": "CoreBluetooth.CBCharacteristic",
+ "usr": "c:objc(cs)CBCharacteristic"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any Swift.Error)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "any Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleDevice(im)peripheral:didUpdateNotificationStateForCharacteristic:error:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheral_29didUpdateNotificationStateFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "peripheral:didUpdateNotificationStateForCharacteristic:error:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "peripheral",
+ "printedName": "peripheral(_:didUpdateValueFor:error:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBCharacteristic",
+ "printedName": "CoreBluetooth.CBCharacteristic",
+ "usr": "c:objc(cs)CBCharacteristic"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any Swift.Error)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "any Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleDevice(im)peripheral:didUpdateValueForCharacteristic:error:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheral_17didUpdateValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "peripheral:didUpdateValueForCharacteristic:error:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "peripheral",
+ "printedName": "peripheral(_:didWriteValueFor:error:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBPeripheral",
+ "printedName": "CoreBluetooth.CBPeripheral",
+ "usr": "c:objc(cs)CBPeripheral"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "CBCharacteristic",
+ "printedName": "CoreBluetooth.CBCharacteristic",
+ "usr": "c:objc(cs)CBCharacteristic"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any Swift.Error)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "any Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)BleDevice(im)peripheral:didWriteValueForCharacteristic:error:",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC10peripheral_16didWriteValueFor5errorySo12CBPeripheralC_So16CBCharacteristicCs5Error_pSgtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "peripheral:didWriteValueForCharacteristic:error:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice",
+ "mangledName": "$s11PlaudBleSDK0B6DeviceC",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "CommonType",
+ "printedName": "CommonType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "LightDuration",
+ "printedName": "LightDuration",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO13LightDurationyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO13LightDurationyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "LightBright",
+ "printedName": "LightBright",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO11LightBrightyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO11LightBrightyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "Language",
+ "printedName": "Language",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO8LanguageyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO8LanguageyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "AutoClear",
+ "printedName": "AutoClear",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO9AutoClearyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO9AutoClearyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "VAD",
+ "printedName": "VAD",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO3VADyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO3VADyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "RecScene",
+ "printedName": "RecScene",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO8RecSceneyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO8RecSceneyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "RecMode",
+ "printedName": "RecMode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO7RecModeyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO7RecModeyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "VadSensitivity",
+ "printedName": "VadSensitivity",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO14VadSensitivityyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO14VadSensitivityyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "VpuGain",
+ "printedName": "VpuGain",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO7VpuGainyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO7VpuGainyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "BatteryMode",
+ "printedName": "BatteryMode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO11BatteryModeyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO11BatteryModeyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "MicGain",
+ "printedName": "MicGain",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO7MicGainyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO7MicGainyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "WiFiChannel",
+ "printedName": "WiFiChannel",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO11WiFiChannelyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO11WiFiChannelyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "SwitchHandle",
+ "printedName": "SwitchHandle",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO12SwitchHandleyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO12SwitchHandleyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "AutoPowerOff",
+ "printedName": "AutoPowerOff",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO12AutoPowerOffyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO12AutoPowerOffyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "RawWaveEnabled",
+ "printedName": "RawWaveEnabled",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO14RawWaveEnabledyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO14RawWaveEnabledyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "RecordingAfterDisConnet",
+ "printedName": "RecordingAfterDisConnet",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO23RecordingAfterDisConnetyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO23RecordingAfterDisConnetyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "SyncWhenIdle",
+ "printedName": "SyncWhenIdle",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO12SyncWhenIdleyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO12SyncWhenIdleyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "FindMyState",
+ "printedName": "FindMyState",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO11FindMyStateyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO11FindMyStateyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "VPUCLK",
+ "printedName": "VPUCLK",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO6VPUCLKyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO6VPUCLKyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "StopRecordAfterCharging",
+ "printedName": "StopRecordAfterCharging",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonType.Type) -> PlaudBleSDK.CommonType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK10CommonTypeO23StopRecordAfterChargingyA2CmF",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO23StopRecordAfterChargingyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.CommonType?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonType",
+ "printedName": "PlaudBleSDK.CommonType",
+ "usr": "s:11PlaudBleSDK10CommonTypeO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK10CommonTypeO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK10CommonTypeO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10CommonTypeO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK10CommonTypeO",
+ "mangledName": "$s11PlaudBleSDK10CommonTypeO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "CommonAction",
+ "printedName": "CommonAction",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "Read",
+ "printedName": "Read",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonAction.Type) -> PlaudBleSDK.CommonAction",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonAction",
+ "printedName": "PlaudBleSDK.CommonAction",
+ "usr": "s:11PlaudBleSDK12CommonActionO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonAction.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonAction",
+ "printedName": "PlaudBleSDK.CommonAction",
+ "usr": "s:11PlaudBleSDK12CommonActionO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK12CommonActionO4ReadyA2CmF",
+ "mangledName": "$s11PlaudBleSDK12CommonActionO4ReadyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Set",
+ "printedName": "Set",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.CommonAction.Type) -> PlaudBleSDK.CommonAction",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonAction",
+ "printedName": "PlaudBleSDK.CommonAction",
+ "usr": "s:11PlaudBleSDK12CommonActionO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.CommonAction.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonAction",
+ "printedName": "PlaudBleSDK.CommonAction",
+ "usr": "s:11PlaudBleSDK12CommonActionO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK12CommonActionO3SetyA2CmF",
+ "mangledName": "$s11PlaudBleSDK12CommonActionO3SetyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.CommonAction?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CommonAction",
+ "printedName": "PlaudBleSDK.CommonAction",
+ "usr": "s:11PlaudBleSDK12CommonActionO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK12CommonActionO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK12CommonActionO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK12CommonActionO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK12CommonActionO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK12CommonActionO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK12CommonActionO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK12CommonActionO",
+ "mangledName": "$s11PlaudBleSDK12CommonActionO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "BacklightBright",
+ "printedName": "BacklightBright",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "Bright1",
+ "printedName": "Bright1",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightBright.Type) -> PlaudBleSDK.BacklightBright",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightBright.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO7Bright1yA2CmF",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO7Bright1yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Bright2",
+ "printedName": "Bright2",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightBright.Type) -> PlaudBleSDK.BacklightBright",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightBright.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO7Bright2yA2CmF",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO7Bright2yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Bright3",
+ "printedName": "Bright3",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightBright.Type) -> PlaudBleSDK.BacklightBright",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightBright.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO7Bright3yA2CmF",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO7Bright3yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Bright4",
+ "printedName": "Bright4",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightBright.Type) -> PlaudBleSDK.BacklightBright",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightBright.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO7Bright4yA2CmF",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO7Bright4yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Bright5",
+ "printedName": "Bright5",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightBright.Type) -> PlaudBleSDK.BacklightBright",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightBright.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO7Bright5yA2CmF",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO7Bright5yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Bright6",
+ "printedName": "Bright6",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightBright.Type) -> PlaudBleSDK.BacklightBright",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightBright.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO7Bright6yA2CmF",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO7Bright6yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.BacklightBright?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightBright",
+ "printedName": "PlaudBleSDK.BacklightBright",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK15BacklightBrightO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK15BacklightBrightO",
+ "mangledName": "$s11PlaudBleSDK15BacklightBrightO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "BacklightDuration",
+ "printedName": "BacklightDuration",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "Sec10",
+ "printedName": "Sec10",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightDuration.Type) -> PlaudBleSDK.BacklightDuration",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightDuration.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO5Sec10yA2CmF",
+ "mangledName": "$s11PlaudBleSDK17BacklightDurationO5Sec10yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Sec20",
+ "printedName": "Sec20",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightDuration.Type) -> PlaudBleSDK.BacklightDuration",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightDuration.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO5Sec20yA2CmF",
+ "mangledName": "$s11PlaudBleSDK17BacklightDurationO5Sec20yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Sec30",
+ "printedName": "Sec30",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightDuration.Type) -> PlaudBleSDK.BacklightDuration",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightDuration.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO5Sec30yA2CmF",
+ "mangledName": "$s11PlaudBleSDK17BacklightDurationO5Sec30yA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "SecAlways",
+ "printedName": "SecAlways",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.BacklightDuration.Type) -> PlaudBleSDK.BacklightDuration",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.BacklightDuration.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO9SecAlwaysyA2CmF",
+ "mangledName": "$s11PlaudBleSDK17BacklightDurationO9SecAlwaysyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.BacklightDuration?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BacklightDuration",
+ "printedName": "PlaudBleSDK.BacklightDuration",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK17BacklightDurationO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK17BacklightDurationO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK17BacklightDurationO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK17BacklightDurationO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK17BacklightDurationO",
+ "mangledName": "$s11PlaudBleSDK17BacklightDurationO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "LanguageType",
+ "printedName": "LanguageType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "SimpleChinese",
+ "printedName": "SimpleChinese",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.LanguageType.Type) -> PlaudBleSDK.LanguageType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LanguageType",
+ "printedName": "PlaudBleSDK.LanguageType",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.LanguageType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LanguageType",
+ "printedName": "PlaudBleSDK.LanguageType",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO13SimpleChineseyA2CmF",
+ "mangledName": "$s11PlaudBleSDK12LanguageTypeO13SimpleChineseyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "TradChinese",
+ "printedName": "TradChinese",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.LanguageType.Type) -> PlaudBleSDK.LanguageType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LanguageType",
+ "printedName": "PlaudBleSDK.LanguageType",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.LanguageType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LanguageType",
+ "printedName": "PlaudBleSDK.LanguageType",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO11TradChineseyA2CmF",
+ "mangledName": "$s11PlaudBleSDK12LanguageTypeO11TradChineseyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "English",
+ "printedName": "English",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.LanguageType.Type) -> PlaudBleSDK.LanguageType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LanguageType",
+ "printedName": "PlaudBleSDK.LanguageType",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.LanguageType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LanguageType",
+ "printedName": "PlaudBleSDK.LanguageType",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO7EnglishyA2CmF",
+ "mangledName": "$s11PlaudBleSDK12LanguageTypeO7EnglishyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.LanguageType?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "LanguageType",
+ "printedName": "PlaudBleSDK.LanguageType",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK12LanguageTypeO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK12LanguageTypeO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK12LanguageTypeO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK12LanguageTypeO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK12LanguageTypeO",
+ "mangledName": "$s11PlaudBleSDK12LanguageTypeO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "RecScene",
+ "printedName": "RecScene",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "Unknown",
+ "printedName": "Unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecScene.Type) -> PlaudBleSDK.RecScene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecScene.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK8RecSceneO7UnknownyA2CmF",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO7UnknownyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Normal",
+ "printedName": "Normal",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecScene.Type) -> PlaudBleSDK.RecScene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecScene.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK8RecSceneO6NormalyA2CmF",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO6NormalyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Interview",
+ "printedName": "Interview",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecScene.Type) -> PlaudBleSDK.RecScene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecScene.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK8RecSceneO9InterviewyA2CmF",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO9InterviewyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Classroom",
+ "printedName": "Classroom",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecScene.Type) -> PlaudBleSDK.RecScene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecScene.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK8RecSceneO9ClassroomyA2CmF",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO9ClassroomyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Music",
+ "printedName": "Music",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecScene.Type) -> PlaudBleSDK.RecScene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecScene.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK8RecSceneO5MusicyA2CmF",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO5MusicyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "Meeting",
+ "printedName": "Meeting",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecScene.Type) -> PlaudBleSDK.RecScene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecScene.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK8RecSceneO7MeetingyA2CmF",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO7MeetingyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Memo",
+ "printedName": "Memo",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecScene.Type) -> PlaudBleSDK.RecScene",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecScene.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK8RecSceneO4MemoyA2CmF",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO4MemoyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.RecScene?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecScene",
+ "printedName": "PlaudBleSDK.RecScene",
+ "usr": "s:11PlaudBleSDK8RecSceneO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK8RecSceneO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK8RecSceneO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK8RecSceneO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK8RecSceneO",
+ "mangledName": "$s11PlaudBleSDK8RecSceneO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "RecMode",
+ "printedName": "RecMode",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "Normal",
+ "printedName": "Normal",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecMode.Type) -> PlaudBleSDK.RecMode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecMode",
+ "printedName": "PlaudBleSDK.RecMode",
+ "usr": "s:11PlaudBleSDK7RecModeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecMode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecMode",
+ "printedName": "PlaudBleSDK.RecMode",
+ "usr": "s:11PlaudBleSDK7RecModeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK7RecModeO6NormalyA2CmF",
+ "mangledName": "$s11PlaudBleSDK7RecModeO6NormalyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "NC",
+ "printedName": "NC",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.RecMode.Type) -> PlaudBleSDK.RecMode",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecMode",
+ "printedName": "PlaudBleSDK.RecMode",
+ "usr": "s:11PlaudBleSDK7RecModeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.RecMode.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecMode",
+ "printedName": "PlaudBleSDK.RecMode",
+ "usr": "s:11PlaudBleSDK7RecModeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK7RecModeO2NCyA2CmF",
+ "mangledName": "$s11PlaudBleSDK7RecModeO2NCyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.RecMode?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "RecMode",
+ "printedName": "PlaudBleSDK.RecMode",
+ "usr": "s:11PlaudBleSDK7RecModeO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK7RecModeO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK7RecModeO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK7RecModeO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK7RecModeO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK7RecModeO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK7RecModeO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK7RecModeO",
+ "mangledName": "$s11PlaudBleSDK7RecModeO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "VadSensitivity",
+ "printedName": "VadSensitivity",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "Quality",
+ "printedName": "Quality",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.VadSensitivity.Type) -> PlaudBleSDK.VadSensitivity",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.VadSensitivity.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO7QualityyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14VadSensitivityO7QualityyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "lowBitrate",
+ "printedName": "lowBitrate",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.VadSensitivity.Type) -> PlaudBleSDK.VadSensitivity",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.VadSensitivity.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO10lowBitrateyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14VadSensitivityO10lowBitrateyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Normal",
+ "printedName": "Normal",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.VadSensitivity.Type) -> PlaudBleSDK.VadSensitivity",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.VadSensitivity.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO6NormalyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14VadSensitivityO6NormalyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "Aggressive",
+ "printedName": "Aggressive",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.VadSensitivity.Type) -> PlaudBleSDK.VadSensitivity",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.VadSensitivity.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO10AggressiveyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14VadSensitivityO10AggressiveyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.VadSensitivity?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VadSensitivity",
+ "printedName": "PlaudBleSDK.VadSensitivity",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK14VadSensitivityO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK14VadSensitivityO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK14VadSensitivityO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK14VadSensitivityO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK14VadSensitivityO",
+ "mangledName": "$s11PlaudBleSDK14VadSensitivityO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "VpuGain",
+ "printedName": "VpuGain",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "Low",
+ "printedName": "Low",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.VpuGain.Type) -> PlaudBleSDK.VpuGain",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VpuGain",
+ "printedName": "PlaudBleSDK.VpuGain",
+ "usr": "s:11PlaudBleSDK7VpuGainO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.VpuGain.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VpuGain",
+ "printedName": "PlaudBleSDK.VpuGain",
+ "usr": "s:11PlaudBleSDK7VpuGainO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK7VpuGainO3LowyA2CmF",
+ "mangledName": "$s11PlaudBleSDK7VpuGainO3LowyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Medium",
+ "printedName": "Medium",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.VpuGain.Type) -> PlaudBleSDK.VpuGain",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VpuGain",
+ "printedName": "PlaudBleSDK.VpuGain",
+ "usr": "s:11PlaudBleSDK7VpuGainO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.VpuGain.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VpuGain",
+ "printedName": "PlaudBleSDK.VpuGain",
+ "usr": "s:11PlaudBleSDK7VpuGainO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK7VpuGainO6MediumyA2CmF",
+ "mangledName": "$s11PlaudBleSDK7VpuGainO6MediumyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "High",
+ "printedName": "High",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.VpuGain.Type) -> PlaudBleSDK.VpuGain",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VpuGain",
+ "printedName": "PlaudBleSDK.VpuGain",
+ "usr": "s:11PlaudBleSDK7VpuGainO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.VpuGain.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VpuGain",
+ "printedName": "PlaudBleSDK.VpuGain",
+ "usr": "s:11PlaudBleSDK7VpuGainO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK7VpuGainO4HighyA2CmF",
+ "mangledName": "$s11PlaudBleSDK7VpuGainO4HighyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.VpuGain?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VpuGain",
+ "printedName": "PlaudBleSDK.VpuGain",
+ "usr": "s:11PlaudBleSDK7VpuGainO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK7VpuGainO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK7VpuGainO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK7VpuGainO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK7VpuGainO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK7VpuGainO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK7VpuGainO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK7VpuGainO",
+ "mangledName": "$s11PlaudBleSDK7VpuGainO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "SwitchHandlerID",
+ "printedName": "SwitchHandlerID",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "CallSceneSwitching",
+ "printedName": "CallSceneSwitching",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwitchHandlerID.Type) -> PlaudBleSDK.SwitchHandlerID",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwitchHandlerID",
+ "printedName": "PlaudBleSDK.SwitchHandlerID",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwitchHandlerID.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwitchHandlerID",
+ "printedName": "PlaudBleSDK.SwitchHandlerID",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO18CallSceneSwitchingyA2CmF",
+ "mangledName": "$s11PlaudBleSDK15SwitchHandlerIDO18CallSceneSwitchingyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Recording",
+ "printedName": "Recording",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwitchHandlerID.Type) -> PlaudBleSDK.SwitchHandlerID",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwitchHandlerID",
+ "printedName": "PlaudBleSDK.SwitchHandlerID",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwitchHandlerID.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwitchHandlerID",
+ "printedName": "PlaudBleSDK.SwitchHandlerID",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO9RecordingyA2CmF",
+ "mangledName": "$s11PlaudBleSDK15SwitchHandlerIDO9RecordingyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.SwitchHandlerID?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwitchHandlerID",
+ "printedName": "PlaudBleSDK.SwitchHandlerID",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK15SwitchHandlerIDO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK15SwitchHandlerIDO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK15SwitchHandlerIDO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK15SwitchHandlerIDO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK15SwitchHandlerIDO",
+ "mangledName": "$s11PlaudBleSDK15SwitchHandlerIDO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "WebsocketType",
+ "printedName": "WebsocketType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "url",
+ "printedName": "url",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.WebsocketType.Type) -> PlaudBleSDK.WebsocketType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.WebsocketType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO3urlyA2CmF",
+ "mangledName": "$s11PlaudBleSDK13WebsocketTypeO3urlyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "serToken",
+ "printedName": "serToken",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.WebsocketType.Type) -> PlaudBleSDK.WebsocketType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.WebsocketType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO8serTokenyA2CmF",
+ "mangledName": "$s11PlaudBleSDK13WebsocketTypeO8serTokenyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "devToken",
+ "printedName": "devToken",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.WebsocketType.Type) -> PlaudBleSDK.WebsocketType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.WebsocketType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO8devTokenyA2CmF",
+ "mangledName": "$s11PlaudBleSDK13WebsocketTypeO8devTokenyA2CmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.WebsocketType?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WebsocketType",
+ "printedName": "PlaudBleSDK.WebsocketType",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO8rawValueACSgs5UInt8V_tcfc",
+ "mangledName": "$s11PlaudBleSDK13WebsocketTypeO8rawValueACSgs5UInt8V_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK13WebsocketTypeO8rawValues5UInt8Vvp",
+ "mangledName": "$s11PlaudBleSDK13WebsocketTypeO8rawValues5UInt8Vvp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO8rawValues5UInt8Vvg",
+ "mangledName": "$s11PlaudBleSDK13WebsocketTypeO8rawValues5UInt8Vvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK13WebsocketTypeO",
+ "mangledName": "$s11PlaudBleSDK13WebsocketTypeO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "UInt8",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "AutoClear",
+ "printedName": "AutoClear",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "Close",
+ "printedName": "Close",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.AutoClear.Type) -> PlaudBleSDK.AutoClear",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AutoClear",
+ "printedName": "PlaudBleSDK.AutoClear",
+ "usr": "s:11PlaudBleSDK9AutoClearO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.AutoClear.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AutoClear",
+ "printedName": "PlaudBleSDK.AutoClear",
+ "usr": "s:11PlaudBleSDK9AutoClearO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK9AutoClearO5CloseyA2CmF",
+ "mangledName": "$s11PlaudBleSDK9AutoClearO5CloseyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "Open",
+ "printedName": "Open",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.AutoClear.Type) -> PlaudBleSDK.AutoClear",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AutoClear",
+ "printedName": "PlaudBleSDK.AutoClear",
+ "usr": "s:11PlaudBleSDK9AutoClearO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.AutoClear.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AutoClear",
+ "printedName": "PlaudBleSDK.AutoClear",
+ "usr": "s:11PlaudBleSDK9AutoClearO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK9AutoClearO4OpenyA2CmF",
+ "mangledName": "$s11PlaudBleSDK9AutoClearO4OpenyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.AutoClear?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AutoClear",
+ "printedName": "PlaudBleSDK.AutoClear",
+ "usr": "s:11PlaudBleSDK9AutoClearO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK9AutoClearO8rawValueACSgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK9AutoClearO8rawValueACSgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK9AutoClearO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK9AutoClearO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK9AutoClearO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK9AutoClearO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK9AutoClearO",
+ "mangledName": "$s11PlaudBleSDK9AutoClearO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "JXFileSoundWave",
+ "printedName": "JXFileSoundWave",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXFileSoundWave",
+ "printedName": "PlaudBleSDK.JXFileSoundWave",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK15JXFileSoundWaveC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXFileSoundWave",
+ "printedName": "PlaudBleSDK.JXFileSoundWave",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave(cm)shared",
+ "mangledName": "$s11PlaudBleSDK15JXFileSoundWaveC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "hasAvcToSoundWaveTask",
+ "printedName": "hasAvcToSoundWaveTask()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave(im)hasAvcToSoundWaveTask",
+ "mangledName": "$s11PlaudBleSDK15JXFileSoundWaveC08hasAvcToeF4TaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "generateSoundWaveCancel",
+ "printedName": "generateSoundWaveCancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave(im)generateSoundWaveCancel",
+ "mangledName": "$s11PlaudBleSDK15JXFileSoundWaveC08generateeF6CancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "createSoundWave",
+ "printedName": "createSoundWave(_:_:_:_:_:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave(im)createSoundWave:::::",
+ "mangledName": "$s11PlaudBleSDK15JXFileSoundWaveC06createeF0yySS_SiS2bySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "avcToSoundWave",
+ "printedName": "avcToSoundWave(avcPath:channels:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave(im)avcToSoundWaveWithAvcPath:channels:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK15JXFileSoundWaveC05avcToeF00G4Path8channels17completionHandlerySS_SiySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "avcToSoundWaveWithAvcPath:channels:completionHandler:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileSoundWave",
+ "mangledName": "$s11PlaudBleSDK15JXFileSoundWaveC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "JXRecordVolumer",
+ "printedName": "JXRecordVolumer",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXRecordVolumer",
+ "printedName": "PlaudBleSDK.JXRecordVolumer",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXRecordVolumer",
+ "printedName": "PlaudBleSDK.JXRecordVolumer",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(cm)shared",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "waveInterval",
+ "printedName": "waveInterval",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(py)waveInterval",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC12waveIntervalSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(im)waveInterval",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC12waveIntervalSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(im)setWaveInterval:",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC12waveIntervalSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15JXRecordVolumerC12waveIntervalSivM",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC12waveIntervalSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeArr",
+ "printedName": "volumeArr",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(py)volumeArr",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC9volumeArrSaySaySiGGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(im)volumeArr",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC9volumeArrSaySaySiGGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "Array",
+ "printedName": "[Swift.Int]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(im)setVolumeArr:",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC9volumeArrSaySaySiGGvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15JXRecordVolumerC9volumeArrSaySaySiGGvM",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC9volumeArrSaySaySiGGvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeMeters",
+ "printedName": "volumeMeters",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK15JXRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvp",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15JXRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvg",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15JXRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvs",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15JXRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvM",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "curSec",
+ "printedName": "curSec",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(py)curSec",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC6curSecSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(im)curSec",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC6curSecSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "averageVolume",
+ "printedName": "averageVolume(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(im)averageVolume:",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC13averageVolumeySi10Foundation4DataVF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "append",
+ "printedName": "append(start:pcmData:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(im)appendWithStart:pcmData:",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC6append5start7pcmDataySi_10Foundation0I0VtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "appendWithStart:pcmData:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "middleNum",
+ "printedName": "middleNum(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Swift.Int]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "paramValueOwnership": "InOut",
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK15JXRecordVolumerC9middleNumySiSaySiGzF",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC9middleNumySiSaySiGzF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "reset",
+ "printedName": "reset()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer(im)reset",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC5resetyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordVolumer",
+ "mangledName": "$s11PlaudBleSDK15JXRecordVolumerC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "JXRecordingVolumer",
+ "printedName": "JXRecordingVolumer",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXRecordingVolumer",
+ "printedName": "PlaudBleSDK.JXRecordingVolumer",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXRecordingVolumer",
+ "printedName": "PlaudBleSDK.JXRecordingVolumer",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(cm)shared",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "delegate",
+ "printedName": "delegate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "(any PlaudBleSDK.VolumeProtocol)?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(py)delegate",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC8delegateAA14VolumeProtocol_pSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "ObjC"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.VolumeProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VolumeProtocol",
+ "printedName": "any PlaudBleSDK.VolumeProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)VolumeProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)delegate",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC8delegateAA14VolumeProtocol_pSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.VolumeProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "VolumeProtocol",
+ "printedName": "any PlaudBleSDK.VolumeProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)VolumeProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)setDelegate:",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC8delegateAA14VolumeProtocol_pSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK18JXRecordingVolumerC8delegateAA14VolumeProtocol_pSgvM",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC8delegateAA14VolumeProtocol_pSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "waveInterval",
+ "printedName": "waveInterval",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(py)waveInterval",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC12waveIntervalSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)waveInterval",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC12waveIntervalSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)setWaveInterval:",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC12waveIntervalSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK18JXRecordingVolumerC12waveIntervalSivM",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC12waveIntervalSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeArr",
+ "printedName": "volumeArr",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(py)volumeArr",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC9volumeArrSaySaySiGGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)volumeArr",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC9volumeArrSaySaySiGGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeMeters",
+ "printedName": "volumeMeters",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK18JXRecordingVolumerC12volumeMetersSaySi3sec_Si0F0tGvp",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC12volumeMetersSaySi3sec_Si0F0tGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK18JXRecordingVolumerC12volumeMetersSaySi3sec_Si0F0tGvg",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC12volumeMetersSaySi3sec_Si0F0tGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "curSec",
+ "printedName": "curSec",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(py)curSec",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC6curSecSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)curSec",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC6curSecSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "curMillisec",
+ "printedName": "curMillisec",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(py)curMillisec",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC11curMillisecSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)curMillisec",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC11curMillisecSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "curFileSize",
+ "printedName": "curFileSize",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(py)curFileSize",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC11curFileSizeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)curFileSize",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC11curFileSizeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "averageVolume",
+ "printedName": "averageVolume(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)averageVolume:",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC13averageVolumey12CoreGraphics7CGFloatV10Foundation4DataVF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "append",
+ "printedName": "append(start:pcmData:channels:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)appendWithStart:pcmData:channels:",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC6append5start7pcmData8channelsySi_10Foundation0I0VSitF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "appendWithStart:pcmData:channels:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "append",
+ "printedName": "append(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)append::",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC6appendyySi_10Foundation4DataVtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setOldVolumeMeters",
+ "printedName": "setOldVolumeMeters(meters:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)setOldVolumeMetersWithMeters:",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC18setOldVolumeMeters6metersySaySaySiGG_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setOldVolumeMetersWithMeters:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setOldVolumeMeters",
+ "printedName": "setOldVolumeMeters(meters:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK18JXRecordingVolumerC18setOldVolumeMeters6metersySaySi3sec_Si6volumetG_tF",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC18setOldVolumeMeters6metersySaySi3sec_Si6volumetG_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "reset",
+ "printedName": "reset()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer(im)reset",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC5resetyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXRecordingVolumer",
+ "mangledName": "$s11PlaudBleSDK18JXRecordingVolumerC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "VolumeProtocol",
+ "printedName": "VolumeProtocol",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "onDuration",
+ "printedName": "onDuration(millisec:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)VolumeProtocol(im)onDurationWithMillisec:",
+ "mangledName": "$s11PlaudBleSDK14VolumeProtocolP10onDuration8millisecySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.VolumeProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "onDurationWithMillisec:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onVolume",
+ "printedName": "onVolume(sec:volume:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)VolumeProtocol(im)onVolumeWithSec:volume:",
+ "mangledName": "$s11PlaudBleSDK14VolumeProtocolP02onD03sec6volumeySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.VolumeProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "onVolumeWithSec:volume:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)VolumeProtocol",
+ "mangledName": "$s11PlaudBleSDK14VolumeProtocolP",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "JXWaveHelper",
+ "printedName": "JXWaveHelper",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXWaveHelper",
+ "printedName": "PlaudBleSDK.JXWaveHelper",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXWaveHelper",
+ "printedName": "PlaudBleSDK.JXWaveHelper",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)shared",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "tmpPcmPath",
+ "printedName": "tmpPcmPath",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)tmpPcmPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC10tmpPcmPathSSvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)tmpPcmPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC10tmpPcmPathSSvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "tmpWavPath",
+ "printedName": "tmpWavPath",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)tmpWavPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC10tmpWavPathSSvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)tmpWavPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC10tmpWavPathSSvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "leftPath",
+ "printedName": "leftPath",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)leftPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC8leftPathSSvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)leftPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC8leftPathSSvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rightPath",
+ "printedName": "rightPath",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)rightPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC9rightPathSSvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)rightPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC9rightPathSSvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "leftWavPath",
+ "printedName": "leftWavPath",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)leftWavPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC11leftWavPathSSvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)leftWavPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC11leftWavPathSSvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rightWavPath",
+ "printedName": "rightWavPath",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)rightWavPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC12rightWavPathSSvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)rightWavPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC12rightWavPathSSvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "leftLycPath",
+ "printedName": "leftLycPath",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)leftLycPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC11leftLycPathSSvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)leftLycPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC11leftLycPathSSvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rightLycPath",
+ "printedName": "rightLycPath",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cpy)rightLycPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC12rightLycPathSSvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(cm)rightLycPath",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC12rightLycPathSSvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "pcmFileToWave",
+ "printedName": "pcmFileToWave(pcmFilePath:wavFilePath:channels:simpleRate:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "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": "UInt32",
+ "printedName": "Swift.UInt32",
+ "hasDefaultArg": true,
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "hasDefaultArg": true,
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(im)pcmFileToWaveWithPcmFilePath:wavFilePath:channels:simpleRate:",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC13pcmFileToWave0fG4Path03wavgJ08channels10simpleRateSbSS_SSs6UInt32VAJtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "pcmFileToWaveWithPcmFilePath:wavFilePath:channels:simpleRate:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "readWaveHeader",
+ "printedName": "readWaveHeader(wavePath:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(fileSize: Swift.Int, channel: Swift.Int, sampleRate: Swift.Int, bitRate: Swift.Int, sampleBit: Swift.Int, dataSize: Swift.Int)",
+ "children": [
+ {
+ "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"
+ },
+ {
+ "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"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK12JXWaveHelperC14readWaveHeader8wavePathSi8fileSize_Si7channelSi10sampleRateSi03bitO0Si0N3BitSi04dataL0tSS_tF",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC14readWaveHeader8wavePathSi8fileSize_Si7channelSi10sampleRateSi03bitO0Si0N3BitSi04dataL0tSS_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "divideLeftAndRight",
+ "printedName": "divideLeftAndRight(_:_:_:handler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "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": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper(im)divideLeftAndRight:::handler:",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC18divideLeftAndRight___7handlerySS_S2SySbctF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWaveHelper",
+ "mangledName": "$s11PlaudBleSDK12JXWaveHelperC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "JXCrcHelper",
+ "printedName": "JXCrcHelper",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXCrcHelper",
+ "printedName": "PlaudBleSDK.JXCrcHelper",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXCrcHelper"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXCrcHelper(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK11JXCrcHelperC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXCrcHelper",
+ "printedName": "PlaudBleSDK.JXCrcHelper",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXCrcHelper"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXCrcHelper(cm)shared",
+ "mangledName": "$s11PlaudBleSDK11JXCrcHelperC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "getCrc",
+ "printedName": "getCrc(path:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXCrcHelper(im)getCrcWithPath:",
+ "mangledName": "$s11PlaudBleSDK11JXCrcHelperC6getCrc4pathSiSS_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "getCrcWithPath:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "checkCrc",
+ "printedName": "checkCrc(crc:ofFile:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXCrcHelper(im)checkCrcWithCrc:ofFile:",
+ "mangledName": "$s11PlaudBleSDK11JXCrcHelperC8checkCrc3crc6ofFileSbSi_SStF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "checkCrcWithCrc:ofFile:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXCrcHelper",
+ "mangledName": "$s11PlaudBleSDK11JXCrcHelperC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "PlaudBleSDK"
+ },
+ {
+ "kind": "Import",
+ "name": "SystemConfiguration",
+ "printedName": "SystemConfiguration",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "NetworkReachabilityManager",
+ "printedName": "NetworkReachabilityManager",
+ "children": [
+ {
+ "kind": "TypeDecl",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "NetworkReachabilityStatus",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "unknown",
+ "printedName": "unknown",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO7unknownyA2EmF",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO7unknownyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "notReachable",
+ "printedName": "notReachable",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO12notReachableyA2EmF",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO12notReachableyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "reachable",
+ "printedName": "reachable",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> (PlaudBleSDK.NetworkReachabilityManager.ConnectionType) -> PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.ConnectionType) -> PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectionType",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO9reachableyAeC14ConnectionTypeOcAEmF",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO9reachableyAeC14ConnectionTypeOcAEmF",
+ "moduleName": "PlaudBleSDK"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ConnectionType",
+ "printedName": "ConnectionType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "ethernetOrWiFi",
+ "printedName": "ethernetOrWiFi",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.ConnectionType.Type) -> PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectionType",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectionType",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO14ethernetOrWiFiyA2EmF",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO14ethernetOrWiFiyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "wwan",
+ "printedName": "wwan",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.ConnectionType.Type) -> PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectionType",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectionType",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectionType",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ConnectionType",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.ConnectionType",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO2eeoiySbAE_AEtFZ",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO2eeoiySbAE_AEtFZ",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO4hash4intoys6HasherVz_tF",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC14ConnectionTypeO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isReachable",
+ "printedName": "isReachable",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC11isReachableSbvp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC11isReachableSbvp",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC11isReachableSbvg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC11isReachableSbvg",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isReachableOnWWAN",
+ "printedName": "isReachableOnWWAN",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvp",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvg",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isReachableOnEthernetOrWiFi",
+ "printedName": "isReachableOnEthernetOrWiFi",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvg",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networkReachabilityStatus",
+ "printedName": "networkReachabilityStatus",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC07networkE6StatusAC0deH0Ovp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC07networkE6StatusAC0deH0Ovp",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC07networkE6StatusAC0deH0Ovg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC07networkE6StatusAC0deH0Ovg",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "listenerQueue",
+ "printedName": "listenerQueue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DispatchQueue",
+ "printedName": "Dispatch.DispatchQueue",
+ "usr": "c:objc(cs)OS_dispatch_queue"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvg",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvs",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "isOpen": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvM",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "isOpen": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "listener",
+ "printedName": "listener",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC8listeneryAC0dE6StatusOcSgvp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC8listeneryAC0dE6StatusOcSgvp",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC8listeneryAC0dE6StatusOcSgvg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC8listeneryAC0dE6StatusOcSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "isOpen": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC8listeneryAC0dE6StatusOcSgvs",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC8listeneryAC0dE6StatusOcSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "isOpen": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC8listeneryAC0dE6StatusOcSgvM",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC8listeneryAC0dE6StatusOcSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "isOpen": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "flags",
+ "printedName": "flags",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "SystemConfiguration.SCNetworkReachabilityFlags?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SCNetworkReachabilityFlags",
+ "printedName": "SystemConfiguration.SCNetworkReachabilityFlags",
+ "usr": "c:@E@SCNetworkReachabilityFlags"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkE5FlagsVSgvp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkE5FlagsVSgvp",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "SystemConfiguration.SCNetworkReachabilityFlags?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SCNetworkReachabilityFlags",
+ "printedName": "SystemConfiguration.SCNetworkReachabilityFlags",
+ "usr": "c:@E@SCNetworkReachabilityFlags"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkE5FlagsVSgvg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkE5FlagsVSgvg",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "previousFlags",
+ "printedName": "previousFlags",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SCNetworkReachabilityFlags",
+ "printedName": "SystemConfiguration.SCNetworkReachabilityFlags",
+ "usr": "c:@E@SCNetworkReachabilityFlags"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkeH0Vvp",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkeH0Vvp",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "HasStorage",
+ "AccessControl"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SCNetworkReachabilityFlags",
+ "printedName": "SystemConfiguration.SCNetworkReachabilityFlags",
+ "usr": "c:@E@SCNetworkReachabilityFlags"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkeH0Vvg",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkeH0Vvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "isOpen": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SCNetworkReachabilityFlags",
+ "printedName": "SystemConfiguration.SCNetworkReachabilityFlags",
+ "usr": "c:@E@SCNetworkReachabilityFlags"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkeH0Vvs",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkeH0Vvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "isOpen": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkeH0VvM",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkeH0VvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "isOpen": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(host:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityManager",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC4hostACSgSS_tcfc",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC4hostACSgSS_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Convenience",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityManager",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerCACSgycfc",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerCACSgycfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Convenience",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "startListening",
+ "printedName": "startListening()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC14startListeningSbyF",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC14startListeningSbyF",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "DiscardableResult",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stopListening",
+ "printedName": "stopListening()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC13stopListeningyyF",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC13stopListeningyyF",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC",
+ "mangledName": "$s11PlaudBleSDK26NetworkReachabilityManagerC",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasMissingDesignatedInitializers": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "NetworkReachabilityStatus",
+ "printedName": "PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus",
+ "usr": "s:11PlaudBleSDK26NetworkReachabilityManagerC0dE6StatusO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK2eeoiySbAA26NetworkReachabilityManagerC0eF6StatusO_AFtF",
+ "mangledName": "$s11PlaudBleSDK2eeoiySbAA26NetworkReachabilityManagerC0eF6StatusO_AFtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "JXAvcDecoder",
+ "printedName": "JXAvcDecoder",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "packSize",
+ "printedName": "packSize",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(py)packSize",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC8packSizeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(im)packSize",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC8packSizeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "twoChannelPackSize",
+ "printedName": "twoChannelPackSize",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(py)twoChannelPackSize",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC18twoChannelPackSizeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(im)twoChannelPackSize",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC18twoChannelPackSizeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "fourChannelPackSize",
+ "printedName": "fourChannelPackSize",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(py)fourChannelPackSize",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC19fourChannelPackSizeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(im)fourChannelPackSize",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC19fourChannelPackSizeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXAvcDecoder",
+ "printedName": "PlaudBleSDK.JXAvcDecoder",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(im)init",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "createDecoderIfNeed",
+ "printedName": "createDecoderIfNeed(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(im)createDecoderIfNeed:",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC06createE6IfNeedyySiF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "decode",
+ "printedName": "decode(_:_:)",
+ "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": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(im)decode::",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC6decodey10Foundation4DataVSgAG_SitF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "releaseDecoder",
+ "printedName": "releaseDecoder()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder(im)releaseDecoder",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC07releaseE0yyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXAvcDecoder",
+ "mangledName": "$s11PlaudBleSDK12JXAvcDecoderC",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "JXAvcDecoder",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "JXFileDecoder",
+ "printedName": "JXFileDecoder",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXFileDecoder",
+ "printedName": "PlaudBleSDK.JXFileDecoder",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileDecoder"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileDecoder(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXFileDecoder",
+ "printedName": "PlaudBleSDK.JXFileDecoder",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileDecoder"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileDecoder(cm)shared",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "pcmToWav",
+ "printedName": "pcmToWav(pcmPath:wavPath:channels:simpleRate:completionHandler:)",
+ "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": "UInt32",
+ "printedName": "Swift.UInt32",
+ "hasDefaultArg": true,
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "hasDefaultArg": true,
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileDecoder(im)pcmToWavWithPcmPath:wavPath:channels:simpleRate:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC8pcmToWav0F4Path03wavI08channels10simpleRate17completionHandlerySS_SSs6UInt32VAKySbctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "pcmToWavWithPcmPath:wavPath:channels:simpleRate:completionHandler:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "resetWavHead",
+ "printedName": "resetWavHead(_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "hasDefaultArg": true,
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileDecoder(im)resetWavHead:::",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC12resetWavHeadyySS_s6UInt32VAFtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasOggMulToSingleTask",
+ "printedName": "hasOggMulToSingleTask()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)hasOggMulToSingleTask",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC21hasOggMulToSingleTaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "oggMulToSingleCancel",
+ "printedName": "oggMulToSingleCancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)oggMulToSingleCancel",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC20oggMulToSingleCancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "oggMulToSingle",
+ "printedName": "oggMulToSingle(_:_:_:_:)",
+ "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": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)oggMulToSingle::::",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC14oggMulToSingleyySS_SSs5Int32VySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasAvcToOggTask",
+ "printedName": "hasAvcToOggTask()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)hasAvcToOggTask",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC15hasAvcToOggTaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "convertAvcToOggCancel",
+ "printedName": "convertAvcToOggCancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)convertAvcToOggCancel",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC21convertAvcToOggCancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "oggToOpus",
+ "printedName": "oggToOpus(_:_:_:_:)",
+ "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": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)oggToOpus::::",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC9oggToOpusyySS_SSs5Int32VySbctF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "avcToOgg",
+ "printedName": "avcToOgg(_:_:clearUnfinished:_:_:_:_:_:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)avcToOgg::clearUnfinished::::::",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC8avcToOgg__15clearUnfinished_____ySS_SSS2bs5Int32VAGSbySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasOggToMp3Task",
+ "printedName": "hasOggToMp3Task()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)hasOggToMp3Task",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC15hasOggToMp3TaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "convertOggToMp3Cancel",
+ "printedName": "convertOggToMp3Cancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)convertOggToMp3Cancel",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC21convertOggToMp3CancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "oggToMp3",
+ "printedName": "oggToMp3(_:_:_:_:_:)",
+ "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": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)oggToMp3:::::",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC8oggToMp3yySS_SSs5Int32VAFySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasAvcToMp3Task",
+ "printedName": "hasAvcToMp3Task()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)hasAvcToMp3Task",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC15hasAvcToMp3TaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "convertAvcToMp3Cancel",
+ "printedName": "convertAvcToMp3Cancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)convertAvcToMp3Cancel",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC21convertAvcToMp3CancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "avcToMp3",
+ "printedName": "avcToMp3(avcPath:mp3Path:clearUnfinished:quality:channels:ns_agc:completionHandler:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)avcToMp3WithAvcPath:mp3Path:clearUnfinished:quality:channels:ns_agc:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC8avcToMp30F4Path03mp3I015clearUnfinished7quality8channels6ns_agc17completionHandlerySS_SSSbs5Int32VAMSbySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "avcToMp3WithAvcPath:mp3Path:clearUnfinished:quality:channels:ns_agc:completionHandler:",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasPcmToMp3Task",
+ "printedName": "hasPcmToMp3Task()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)hasPcmToMp3Task",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC15hasPcmToMp3TaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "convertPcmToMp3Cancel",
+ "printedName": "convertPcmToMp3Cancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)convertPcmToMp3Cancel",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC21convertPcmToMp3CancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "pcmToMp3",
+ "printedName": "pcmToMp3(pcmPath:mp3Path:clearUnfinished:quality:channels:completionHandler:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)pcmToMp3WithPcmPath:mp3Path:clearUnfinished:quality:channels:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC8pcmToMp30F4Path03mp3I015clearUnfinished7quality8channels17completionHandlerySS_SSSbs5Int32VALySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "pcmToMp3WithPcmPath:mp3Path:clearUnfinished:quality:channels:completionHandler:",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasAvcToPcmTask",
+ "printedName": "hasAvcToPcmTask()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)hasAvcToPcmTask",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC15hasAvcToPcmTaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "convertAvcToPcmCancel",
+ "printedName": "convertAvcToPcmCancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)convertAvcToPcmCancel",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC21convertAvcToPcmCancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "avcToPcm",
+ "printedName": "avcToPcm(avcPath:pcmPath:clearUnfinished:channels:ns_agc:completionHandler:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)avcToPcmWithAvcPath:pcmPath:clearUnfinished:channels:ns_agc:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC8avcToPcm0F4Path03pcmI015clearUnfinished8channels6ns_agc17completionHandlerySS_SSSbs5Int32VSbySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "avcToPcmWithAvcPath:pcmPath:clearUnfinished:channels:ns_agc:completionHandler:",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "oggToPcm",
+ "printedName": "oggToPcm(avcPath:pcmPath:clearUnfinished:channels:ns_agc:completionHandler:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)oggToPcmWithAvcPath:pcmPath:clearUnfinished:channels:ns_agc:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC8oggToPcm7avcPath03pcmJ015clearUnfinished8channels6ns_agc17completionHandlerySS_SSSbs5Int32VSbySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "oggToPcmWithAvcPath:pcmPath:clearUnfinished:channels:ns_agc:completionHandler:",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasAvcToWavTask",
+ "printedName": "hasAvcToWavTask()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)hasAvcToWavTask",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC15hasAvcToWavTaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "convertAvcToWavCancel",
+ "printedName": "convertAvcToWavCancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)convertAvcToWavCancel",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC21convertAvcToWavCancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "avcToWav",
+ "printedName": "avcToWav(avcPath:wavPath:channels:ns_agc:clearUnfinished:completionHandler:)",
+ "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": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "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": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)avcToWavWithAvcPath:wavPath:channels:ns_agc:clearUnfinished:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC8avcToWav0F4Path03wavI08channels6ns_agc15clearUnfinished17completionHandlerySS_SSs5Int32VS2bySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "avcToWavWithAvcPath:wavPath:channels:ns_agc:clearUnfinished:completionHandler:",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasAvcToNoiseReductionWav",
+ "printedName": "hasAvcToNoiseReductionWav()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)hasAvcToNoiseReductionWav",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC25hasAvcToNoiseReductionWavSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "convertAvcToNoiseReductionWavCancel",
+ "printedName": "convertAvcToNoiseReductionWavCancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)convertAvcToNoiseReductionWavCancel",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC35convertAvcToNoiseReductionWavCancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "avcToNoiseReductionWav",
+ "printedName": "avcToNoiseReductionWav(avcPath:wavPath:channels:sound_plus:noiseReductionGain:clearUnfinished:completionHandler:)",
+ "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": "Int32",
+ "printedName": "Swift.Int32",
+ "hasDefaultArg": true,
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXFileDecoder(im)avcToNoiseReductionWavWithAvcPath:wavPath:channels:sound_plus:noiseReductionGain:clearUnfinished:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC22avcToNoiseReductionWav0F4Path03wavK08channels10sound_plus05noiseI4Gain15clearUnfinished17completionHandlerySS_SSs5Int32VSbSiSbySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "avcToNoiseReductionWavWithAvcPath:wavPath:channels:sound_plus:noiseReductionGain:clearUnfinished:completionHandler:",
+ "declAttributes": [
+ "Dynamic",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXFileDecoder",
+ "mangledName": "$s11PlaudBleSDK13JXFileDecoderC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "JXPcmProcessDelegate",
+ "printedName": "JXPcmProcessDelegate",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "onPcmData",
+ "printedName": "onPcmData(_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate(im)onPcmData:::",
+ "mangledName": "$s11PlaudBleSDK20JXPcmProcessDelegateP9onPcmDatayySi_Si10Foundation0I0VtF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.JXPcmProcessDelegate>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onDecodeErr",
+ "printedName": "onDecodeErr(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate(im)onDecodeErr:",
+ "mangledName": "$s11PlaudBleSDK20JXPcmProcessDelegateP11onDecodeErryySiF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.JXPcmProcessDelegate>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate",
+ "mangledName": "$s11PlaudBleSDK20JXPcmProcessDelegateP",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "JXPcmProcess",
+ "printedName": "JXPcmProcess",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXPcmProcess",
+ "printedName": "PlaudBleSDK.JXPcmProcess",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXPcmProcess",
+ "printedName": "PlaudBleSDK.JXPcmProcess",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(cm)shared",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "delegate",
+ "printedName": "delegate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "(any PlaudBleSDK.JXPcmProcessDelegate)?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(py)delegate",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC8delegateAA0dE8Delegate_pSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.JXPcmProcessDelegate)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXPcmProcessDelegate",
+ "printedName": "any PlaudBleSDK.JXPcmProcessDelegate",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(im)delegate",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC8delegateAA0dE8Delegate_pSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.JXPcmProcessDelegate)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXPcmProcessDelegate",
+ "printedName": "any PlaudBleSDK.JXPcmProcessDelegate",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(im)setDelegate:",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC8delegateAA0dE8Delegate_pSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK12JXPcmProcessC8delegateAA0dE8Delegate_pSgvM",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC8delegateAA0dE8Delegate_pSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": 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": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(py)callbackQueue",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC13callbackQueueSo17OS_dispatch_queueCvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(im)callbackQueue",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC13callbackQueueSo17OS_dispatch_queueCvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(im)setCallbackQueue:",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC13callbackQueueSo17OS_dispatch_queueCvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK12JXPcmProcessC13callbackQueueSo17OS_dispatch_queueCvM",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC13callbackQueueSo17OS_dispatch_queueCvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "resetWith",
+ "printedName": "resetWith(_:_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(im)resetWith::::",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC9resetWithyySi_SiS2btF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "receiveData",
+ "printedName": "receiveData(_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(im)receiveData:::",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC11receiveDatayySi_Si10Foundation0G0VtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "receiveDataBytes",
+ "printedName": "receiveDataBytes(_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess(im)receiveDataBytes:::",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC16receiveDataBytesyySi_Si10Foundation0G0VtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onPcmData",
+ "printedName": "onPcmData(_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXPcmProcess(im)onPcmData:::",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC9onPcmDatayySi_Si10Foundation0H0VtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "onPcmData:::",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onDecodeErr",
+ "printedName": "onDecodeErr(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@PlaudBleSDK@objc(cs)JXPcmProcess(im)onDecodeErr:",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC11onDecodeErryySiF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "onDecodeErr:",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXPcmProcess",
+ "mangledName": "$s11PlaudBleSDK12JXPcmProcessC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "Conformance",
+ "name": "JXPcmProcessDelegate",
+ "printedName": "JXPcmProcessDelegate",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate",
+ "mangledName": "$s11PlaudBleSDK20JXPcmProcessDelegateP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "JXWave2PcmProcess",
+ "printedName": "JXWave2PcmProcess",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXWave2PcmProcess",
+ "printedName": "PlaudBleSDK.JXWave2PcmProcess",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXWave2PcmProcess",
+ "printedName": "PlaudBleSDK.JXWave2PcmProcess",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(cm)shared",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "delegate",
+ "printedName": "delegate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "(any PlaudBleSDK.JXPcmProcessDelegate)?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(py)delegate",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC8delegateAA05JXPcmF8Delegate_pSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.JXPcmProcessDelegate)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXPcmProcessDelegate",
+ "printedName": "any PlaudBleSDK.JXPcmProcessDelegate",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(im)delegate",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC8delegateAA05JXPcmF8Delegate_pSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.JXPcmProcessDelegate)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "JXPcmProcessDelegate",
+ "printedName": "any PlaudBleSDK.JXPcmProcessDelegate",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)JXPcmProcessDelegate"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(im)setDelegate:",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC8delegateAA05JXPcmF8Delegate_pSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK17JXWave2PcmProcessC8delegateAA05JXPcmF8Delegate_pSgvM",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC8delegateAA05JXPcmF8Delegate_pSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": 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": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(py)callbackQueue",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC13callbackQueueSo17OS_dispatch_queueCvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(im)callbackQueue",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC13callbackQueueSo17OS_dispatch_queueCvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(im)setCallbackQueue:",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC13callbackQueueSo17OS_dispatch_queueCvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK17JXWave2PcmProcessC13callbackQueueSo17OS_dispatch_queueCvM",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC13callbackQueueSo17OS_dispatch_queueCvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "resetWith",
+ "printedName": "resetWith(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(im)resetWith:",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC9resetWithyySiF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "receiveData",
+ "printedName": "receiveData(_:_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess(im)receiveData:::",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC11receiveDatayySi_Si10Foundation0H0VtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)JXWave2PcmProcess",
+ "mangledName": "$s11PlaudBleSDK17JXWave2PcmProcessC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PDFileSoundWave",
+ "printedName": "PDFileSoundWave",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PDFileSoundWave",
+ "printedName": "PlaudBleSDK.PDFileSoundWave",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK15PDFileSoundWaveC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PDFileSoundWave",
+ "printedName": "PlaudBleSDK.PDFileSoundWave",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave(cm)shared",
+ "mangledName": "$s11PlaudBleSDK15PDFileSoundWaveC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "hasAvcToSoundWaveTask",
+ "printedName": "hasAvcToSoundWaveTask()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave(im)hasAvcToSoundWaveTask",
+ "mangledName": "$s11PlaudBleSDK15PDFileSoundWaveC08hasAvcToeF4TaskSbyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "generateSoundWaveCancel",
+ "printedName": "generateSoundWaveCancel()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave(im)generateSoundWaveCancel",
+ "mangledName": "$s11PlaudBleSDK15PDFileSoundWaveC08generateeF6CancelyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "createSoundWave",
+ "printedName": "createSoundWave(_:_:_:_:_:)",
+ "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": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave(im)createSoundWave:::::",
+ "mangledName": "$s11PlaudBleSDK15PDFileSoundWaveC06createeF0yySS_SiS2bySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "avcToSoundWave",
+ "printedName": "avcToSoundWave(avcPath:channels:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Bool, Swift.Int) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Bool, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave(im)avcToSoundWaveWithAvcPath:channels:completionHandler:",
+ "mangledName": "$s11PlaudBleSDK15PDFileSoundWaveC05avcToeF00G4Path8channels17completionHandlerySS_SiySb_SitctF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "avcToSoundWaveWithAvcPath:channels:completionHandler:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDFileSoundWave",
+ "mangledName": "$s11PlaudBleSDK15PDFileSoundWaveC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "PDRecordVolumer",
+ "printedName": "PDRecordVolumer",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PDRecordVolumer",
+ "printedName": "PlaudBleSDK.PDRecordVolumer",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PDRecordVolumer",
+ "printedName": "PlaudBleSDK.PDRecordVolumer",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(cm)shared",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "waveInterval",
+ "printedName": "waveInterval",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(py)waveInterval",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC12waveIntervalSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(im)waveInterval",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC12waveIntervalSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(im)setWaveInterval:",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC12waveIntervalSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15PDRecordVolumerC12waveIntervalSivM",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC12waveIntervalSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeArr",
+ "printedName": "volumeArr",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(py)volumeArr",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC9volumeArrSaySaySiGGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(im)volumeArr",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC9volumeArrSaySaySiGGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "Array",
+ "printedName": "[Swift.Int]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(im)setVolumeArr:",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC9volumeArrSaySaySiGGvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15PDRecordVolumerC9volumeArrSaySaySiGGvM",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC9volumeArrSaySaySiGGvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeMeters",
+ "printedName": "volumeMeters",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK15PDRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvp",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15PDRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvg",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15PDRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvs",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15PDRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvM",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC12volumeMetersSaySi3sec_Si0F0tGvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "curSec",
+ "printedName": "curSec",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(py)curSec",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC6curSecSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(im)curSec",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC6curSecSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "averageVolume",
+ "printedName": "averageVolume(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(im)averageVolume:",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC13averageVolumeySi10Foundation4DataVF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "append",
+ "printedName": "append(start:pcmData:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(im)appendWithStart:pcmData:",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC6append5start7pcmDataySi_10Foundation0I0VtF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "appendWithStart:pcmData:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "middleNum",
+ "printedName": "middleNum(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Swift.Int]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "paramValueOwnership": "InOut",
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK15PDRecordVolumerC9middleNumySiSaySiGzF",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC9middleNumySiSaySiGzF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "reset",
+ "printedName": "reset()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer(im)reset",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC5resetyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordVolumer",
+ "mangledName": "$s11PlaudBleSDK15PDRecordVolumerC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "PDRecordingVolumer",
+ "printedName": "PDRecordingVolumer",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PDRecordingVolumer",
+ "printedName": "PlaudBleSDK.PDRecordingVolumer",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(cpy)shared",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PDRecordingVolumer",
+ "printedName": "PlaudBleSDK.PDRecordingVolumer",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(cm)shared",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "delegate",
+ "printedName": "delegate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "(any PlaudBleSDK.PDVolumeProtocol)?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(py)delegate",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC8delegateAA16PDVolumeProtocol_pSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "ObjC"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.PDVolumeProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PDVolumeProtocol",
+ "printedName": "any PlaudBleSDK.PDVolumeProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)PDVolumeProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)delegate",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC8delegateAA16PDVolumeProtocol_pSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.PDVolumeProtocol)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PDVolumeProtocol",
+ "printedName": "any PlaudBleSDK.PDVolumeProtocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)PDVolumeProtocol"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)setDelegate:",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC8delegateAA16PDVolumeProtocol_pSgvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK18PDRecordingVolumerC8delegateAA16PDVolumeProtocol_pSgvM",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC8delegateAA16PDVolumeProtocol_pSgvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "waveInterval",
+ "printedName": "waveInterval",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(py)waveInterval",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC12waveIntervalSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)waveInterval",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC12waveIntervalSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)setWaveInterval:",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC12waveIntervalSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK18PDRecordingVolumerC12waveIntervalSivM",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC12waveIntervalSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeArr",
+ "printedName": "volumeArr",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(py)volumeArr",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC9volumeArrSaySaySiGGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)volumeArr",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC9volumeArrSaySaySiGGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeMeters",
+ "printedName": "volumeMeters",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK18PDRecordingVolumerC12volumeMetersSaySi3sec_Si0F0tGvp",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC12volumeMetersSaySi3sec_Si0F0tGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK18PDRecordingVolumerC12volumeMetersSaySi3sec_Si0F0tGvg",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC12volumeMetersSaySi3sec_Si0F0tGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumePerTwentyMsecs",
+ "printedName": "volumePerTwentyMsecs",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(perTwentyMsec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(perTwentyMsec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK18PDRecordingVolumerC20volumePerTwentyMsecsSaySi03perH4Msec_Si0F0tGvp",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC20volumePerTwentyMsecsSaySi03perH4Msec_Si0F0tGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(perTwentyMsec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(perTwentyMsec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK18PDRecordingVolumerC20volumePerTwentyMsecsSaySi03perH4Msec_Si0F0tGvg",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC20volumePerTwentyMsecsSaySi03perH4Msec_Si0F0tGvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "curSec",
+ "printedName": "curSec",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(py)curSec",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC6curSecSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)curSec",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC6curSecSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "curMillisec",
+ "printedName": "curMillisec",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(py)curMillisec",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC11curMillisecSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)curMillisec",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC11curMillisecSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "curFileSize",
+ "printedName": "curFileSize",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(py)curFileSize",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC11curFileSizeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)curFileSize",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC11curFileSizeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "averageVolume",
+ "printedName": "averageVolume(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CGFloat",
+ "printedName": "CoreGraphics.CGFloat",
+ "usr": "s:14CoreFoundation7CGFloatV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)averageVolume:",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC13averageVolumey12CoreGraphics7CGFloatV10Foundation4DataVF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "append",
+ "printedName": "append(start:pcmData:channels:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "hasDefaultArg": true,
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)appendWithStart:pcmData:channels:",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC6append5start7pcmData8channelsySi_10Foundation0I0VSitF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "appendWithStart:pcmData:channels:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "append",
+ "printedName": "append(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)append::",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC6appendyySi_10Foundation4DataVtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setOldVolumeMeters",
+ "printedName": "setOldVolumeMeters(meters:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)setOldVolumeMetersWithMeters:",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC18setOldVolumeMeters6metersySaySaySiGG_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "setOldVolumeMetersWithMeters:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "setOldVolumeMeters",
+ "printedName": "setOldVolumeMeters(meters:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[(sec: Swift.Int, volume: Swift.Int)]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(sec: Swift.Int, volume: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK18PDRecordingVolumerC18setOldVolumeMeters6metersySaySi3sec_Si6volumetG_tF",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC18setOldVolumeMeters6metersySaySi3sec_Si6volumetG_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "reset",
+ "printedName": "reset()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer(im)reset",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC5resetyyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PDRecordingVolumer",
+ "mangledName": "$s11PlaudBleSDK18PDRecordingVolumerC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "PDVolumeProtocol",
+ "printedName": "PDVolumeProtocol",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "onDuration",
+ "printedName": "onDuration(millisec:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)PDVolumeProtocol(im)onDurationWithMillisec:",
+ "mangledName": "$s11PlaudBleSDK16PDVolumeProtocolP10onDuration8millisecySi_tF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.PDVolumeProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "onDurationWithMillisec:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onVolume",
+ "printedName": "onVolume(sec:volume:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)PDVolumeProtocol(im)onVolumeWithSec:volume:",
+ "mangledName": "$s11PlaudBleSDK16PDVolumeProtocolP8onVolume3sec6volumeySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.PDVolumeProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "onVolumeWithSec:volume:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "onVolumePerTwentyMsec",
+ "printedName": "onVolumePerTwentyMsec(mescSecond:volume:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)PDVolumeProtocol(im)onVolumePerTwentyMsecWithMescSecond:volume:",
+ "mangledName": "$s11PlaudBleSDK16PDVolumeProtocolP21onVolumePerTwentyMsec10mescSecond6volumeySi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.PDVolumeProtocol>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "onVolumePerTwentyMsecWithMescSecond:volume:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@PlaudBleSDK@objc(pl)PDVolumeProtocol",
+ "mangledName": "$s11PlaudBleSDK16PDVolumeProtocolP",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Import",
+ "name": "CryptoKit",
+ "printedName": "CryptoKit",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SecretUtil",
+ "printedName": "SecretUtil",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "decryptWithPrivateKey",
+ "printedName": "decryptWithPrivateKey(_:privateKeyPem:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK10SecretUtilC21decryptWithPrivateKey_07privateI3Pem10Foundation4DataVAH_SStKFZ",
+ "mangledName": "$s11PlaudBleSDK10SecretUtilC21decryptWithPrivateKey_07privateI3Pem10Foundation4DataVAH_SStKFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "encryptWithChaChaPoly1305Separate",
+ "printedName": "encryptWithChaChaPoly1305Separate(_:key:nonce:ad:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(ciphertext: Foundation.Data, tag: Foundation.Data)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK10SecretUtilC014encryptWithChaH16Poly1305Separate_3key5nonce2ad10Foundation4DataV10ciphertext_AJ3tagtAJ_A3JSgtKFZ",
+ "mangledName": "$s11PlaudBleSDK10SecretUtilC014encryptWithChaH16Poly1305Separate_3key5nonce2ad10Foundation4DataV10ciphertext_AJ3tagtAJ_A3JSgtKFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "decryptWithChaChaPoly1305Separate",
+ "printedName": "decryptWithChaChaPoly1305Separate(_:tag:key:nonce:ad:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK10SecretUtilC014decryptWithChaH16Poly1305Separate_3tag3key5nonce2ad10Foundation4DataVAK_A4KSgtKFZ",
+ "mangledName": "$s11PlaudBleSDK10SecretUtilC014decryptWithChaH16Poly1305Separate_3tag3key5nonce2ad10Foundation4DataVAK_A4KSgtKFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "encryptWithAES256Separate",
+ "printedName": "encryptWithAES256Separate(_:key:nonce:ad:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(ciphertext: Foundation.Data, tag: Foundation.Data)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK10SecretUtilC25encryptWithAES256Separate_3key5nonce2ad10Foundation4DataV10ciphertext_AJ3tagtAJ_A3JSgtKFZ",
+ "mangledName": "$s11PlaudBleSDK10SecretUtilC25encryptWithAES256Separate_3key5nonce2ad10Foundation4DataV10ciphertext_AJ3tagtAJ_A3JSgtKFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "decryptWithAES256Separate",
+ "printedName": "decryptWithAES256Separate(_:tag:key:nonce:ad:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK10SecretUtilC25decryptWithAES256Separate_3tag3key5nonce2ad10Foundation4DataVAK_A4KSgtKFZ",
+ "mangledName": "$s11PlaudBleSDK10SecretUtilC25decryptWithAES256Separate_3tag3key5nonce2ad10Foundation4DataVAK_A4KSgtKFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "decryptWithFallback",
+ "printedName": "decryptWithFallback(ciphertext:tag:key:nonce:ad:preferAes:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK10SecretUtilC19decryptWithFallback10ciphertext3tag3key5nonce2ad9preferAes10Foundation4DataVAM_A4MSgSbtKFZ",
+ "mangledName": "$s11PlaudBleSDK10SecretUtilC19decryptWithFallback10ciphertext3tag3key5nonce2ad9preferAes10Foundation4DataVAM_A4MSgSbtKFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "decryptWithChaCha20Stream",
+ "printedName": "decryptWithChaCha20Stream(_:key:nonce:counter:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "hasDefaultArg": true,
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK10SecretUtilC25decryptWithChaCha20Stream_3key5nonce7counter10Foundation4DataVAJ_A2Js6UInt32VtKFZ",
+ "mangledName": "$s11PlaudBleSDK10SecretUtilC25decryptWithChaCha20Stream_3key5nonce7counter10Foundation4DataVAJ_A2Js6UInt32VtKFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK10SecretUtilC",
+ "mangledName": "$s11PlaudBleSDK10SecretUtilC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasMissingDesignatedInitializers": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Signature",
+ "printedName": "Signature",
+ "children": [
+ {
+ "kind": "TypeDecl",
+ "name": "DigestType",
+ "printedName": "DigestType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "sha1",
+ "printedName": "sha1",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.Signature.DigestType.Type) -> PlaudBleSDK.Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO4sha1yA2EmF",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO4sha1yA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "sha224",
+ "printedName": "sha224",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.Signature.DigestType.Type) -> PlaudBleSDK.Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO6sha224yA2EmF",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO6sha224yA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "sha256",
+ "printedName": "sha256",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.Signature.DigestType.Type) -> PlaudBleSDK.Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO6sha256yA2EmF",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO6sha256yA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "sha384",
+ "printedName": "sha384",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.Signature.DigestType.Type) -> PlaudBleSDK.Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO6sha384yA2EmF",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO6sha384yA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "sha512",
+ "printedName": "sha512",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.Signature.DigestType.Type) -> PlaudBleSDK.Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO6sha512yA2EmF",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO6sha512yA2EmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Function",
+ "name": "==",
+ "printedName": "==(_:_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO2eeoiySbAE_AEtFZ",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO2eeoiySbAE_AEtFZ",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK9SignatureC10DigestTypeO9hashValueSivp",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO9hashValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO9hashValueSivg",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO9hashValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK9SignatureC10DigestTypeO4hash4intoys6HasherVz_tF",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO4hash4intoys6HasherVz_tF",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO",
+ "mangledName": "$s11PlaudBleSDK9SignatureC10DigestTypeO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK9SignatureC4data10Foundation4DataVvp",
+ "mangledName": "$s11PlaudBleSDK9SignatureC4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "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:11PlaudBleSDK9SignatureC4data10Foundation4DataVvg",
+ "mangledName": "$s11PlaudBleSDK9SignatureC4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Signature",
+ "printedName": "PlaudBleSDK.Signature",
+ "usr": "s:11PlaudBleSDK9SignatureC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK9SignatureC4dataAC10Foundation4DataV_tcfc",
+ "mangledName": "$s11PlaudBleSDK9SignatureC4dataAC10Foundation4DataV_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Signature",
+ "printedName": "PlaudBleSDK.Signature",
+ "usr": "s:11PlaudBleSDK9SignatureC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK9SignatureC13base64EncodedACSS_tKcfc",
+ "mangledName": "$s11PlaudBleSDK9SignatureC13base64EncodedACSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Convenience",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Var",
+ "name": "base64String",
+ "printedName": "base64String",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK9SignatureC12base64StringSSvp",
+ "mangledName": "$s11PlaudBleSDK9SignatureC12base64StringSSvp",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK9SignatureC12base64StringSSvg",
+ "mangledName": "$s11PlaudBleSDK9SignatureC12base64StringSSvg",
+ "moduleName": "PlaudBleSDK",
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK9SignatureC",
+ "mangledName": "$s11PlaudBleSDK9SignatureC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PublicKey",
+ "printedName": "PublicKey",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "reference",
+ "printedName": "reference",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK9PublicKeyC9referenceSo03SecE3Refavp",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC9referenceSo03SecE3Refavp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK9PublicKeyC9referenceSo03SecE3Refavg",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC9referenceSo03SecE3Refavg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "originalData",
+ "printedName": "originalData",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK9PublicKeyC12originalData10Foundation0G0VSgvp",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC12originalData10Foundation0G0VSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK9PublicKeyC12originalData10Foundation0G0VSgvg",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC12originalData10Foundation0G0VSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "pemString",
+ "printedName": "pemString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK9PublicKeyC9pemStringSSyKF",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC9pemStringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(reference:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PublicKey",
+ "printedName": "PlaudBleSDK.PublicKey",
+ "usr": "s:11PlaudBleSDK9PublicKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK9PublicKeyC9referenceACSo03SecE3Refa_tKcfc",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC9referenceACSo03SecE3Refa_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PublicKey",
+ "printedName": "PlaudBleSDK.PublicKey",
+ "usr": "s:11PlaudBleSDK9PublicKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK9PublicKeyC4dataAC10Foundation4DataV_tKcfc",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC4dataAC10Foundation4DataV_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "Required",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "publicKeys",
+ "printedName": "publicKeys(pemEncoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[PlaudBleSDK.PublicKey]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PublicKey",
+ "printedName": "PlaudBleSDK.PublicKey",
+ "usr": "s:11PlaudBleSDK9PublicKeyC"
+ }
+ ],
+ "usr": "s:Sa"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK9PublicKeyC10publicKeys10pemEncodedSayACGSS_tFZ",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC10publicKeys10pemEncodedSayACGSS_tFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK9PublicKeyC",
+ "mangledName": "$s11PlaudBleSDK9PublicKeyC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Key",
+ "printedName": "Key",
+ "usr": "s:11PlaudBleSDK3KeyP",
+ "mangledName": "$s11PlaudBleSDK3KeyP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PrivateKey",
+ "printedName": "PrivateKey",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "reference",
+ "printedName": "reference",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC9referenceSo03SecE3Refavp",
+ "mangledName": "$s11PlaudBleSDK10PrivateKeyC9referenceSo03SecE3Refavp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC9referenceSo03SecE3Refavg",
+ "mangledName": "$s11PlaudBleSDK10PrivateKeyC9referenceSo03SecE3Refavg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "originalData",
+ "printedName": "originalData",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC12originalData10Foundation0G0VSgvp",
+ "mangledName": "$s11PlaudBleSDK10PrivateKeyC12originalData10Foundation0G0VSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC12originalData10Foundation0G0VSgvg",
+ "mangledName": "$s11PlaudBleSDK10PrivateKeyC12originalData10Foundation0G0VSgvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "pemString",
+ "printedName": "pemString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC9pemStringSSyKF",
+ "mangledName": "$s11PlaudBleSDK10PrivateKeyC9pemStringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(reference:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PrivateKey",
+ "printedName": "PlaudBleSDK.PrivateKey",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC9referenceACSo03SecE3Refa_tKcfc",
+ "mangledName": "$s11PlaudBleSDK10PrivateKeyC9referenceACSo03SecE3Refa_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PrivateKey",
+ "printedName": "PlaudBleSDK.PrivateKey",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC4dataAC10Foundation4DataV_tKcfc",
+ "mangledName": "$s11PlaudBleSDK10PrivateKeyC4dataAC10Foundation4DataV_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "Required",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC",
+ "mangledName": "$s11PlaudBleSDK10PrivateKeyC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Key",
+ "printedName": "Key",
+ "usr": "s:11PlaudBleSDK3KeyP",
+ "mangledName": "$s11PlaudBleSDK3KeyP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Message",
+ "printedName": "Message",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK7MessageP4data10Foundation4DataVvp",
+ "mangledName": "$s11PlaudBleSDK7MessageP4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "protocolReq": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK7MessageP4data10Foundation4DataVvg",
+ "mangledName": "$s11PlaudBleSDK7MessageP4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Message>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "base64String",
+ "printedName": "base64String",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK7MessageP12base64StringSSvp",
+ "mangledName": "$s11PlaudBleSDK7MessageP12base64StringSSvp",
+ "moduleName": "PlaudBleSDK",
+ "protocolReq": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK7MessageP12base64StringSSvg",
+ "mangledName": "$s11PlaudBleSDK7MessageP12base64StringSSvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Message>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK7MessageP4datax10Foundation4DataV_tcfc",
+ "mangledName": "$s11PlaudBleSDK7MessageP4datax10Foundation4DataV_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Message>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK7MessageP13base64EncodedxSS_tKcfc",
+ "mangledName": "$s11PlaudBleSDK7MessageP13base64EncodedxSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Message>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Var",
+ "name": "base64String",
+ "printedName": "base64String",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK7MessagePAAE12base64StringSSvp",
+ "mangledName": "$s11PlaudBleSDK7MessagePAAE12base64StringSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK7MessagePAAE12base64StringSSvg",
+ "mangledName": "$s11PlaudBleSDK7MessagePAAE12base64StringSSvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Message>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK7MessagePAAE13base64EncodedxSS_tKcfc",
+ "mangledName": "$s11PlaudBleSDK7MessagePAAE13base64EncodedxSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Message>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "throwing": true,
+ "init_kind": "Convenience"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:11PlaudBleSDK7MessageP",
+ "mangledName": "$s11PlaudBleSDK7MessageP",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SwiftyRSAError",
+ "printedName": "SwiftyRSAError",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "pemDoesNotContainKey",
+ "printedName": "pemDoesNotContainKey",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO20pemDoesNotContainKeyyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO20pemDoesNotContainKeyyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "keyRepresentationFailed",
+ "printedName": "keyRepresentationFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (CoreFoundation.CFError?) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(CoreFoundation.CFError?) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(error: CoreFoundation.CFError?)",
+ "children": [
+ {
+ "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": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO23keyRepresentationFailedyACSo10CFErrorRefaSg_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO23keyRepresentationFailedyACSo10CFErrorRefaSg_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "keyGenerationFailed",
+ "printedName": "keyGenerationFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (CoreFoundation.CFError?) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(CoreFoundation.CFError?) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(error: CoreFoundation.CFError?)",
+ "children": [
+ {
+ "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": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO19keyGenerationFailedyACSo10CFErrorRefaSg_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO19keyGenerationFailedyACSo10CFErrorRefaSg_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "keyCreateFailed",
+ "printedName": "keyCreateFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (CoreFoundation.CFError?) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(CoreFoundation.CFError?) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(error: CoreFoundation.CFError?)",
+ "children": [
+ {
+ "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": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO15keyCreateFailedyACSo10CFErrorRefaSg_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO15keyCreateFailedyACSo10CFErrorRefaSg_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "keyAddFailed",
+ "printedName": "keyAddFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.Int32) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int32) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(status: Swift.Int32)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO12keyAddFailedyACs5Int32V_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO12keyAddFailedyACs5Int32V_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "keyCopyFailed",
+ "printedName": "keyCopyFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.Int32) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int32) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(status: Swift.Int32)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO13keyCopyFailedyACs5Int32V_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO13keyCopyFailedyACs5Int32V_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "tagEncodingFailed",
+ "printedName": "tagEncodingFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO17tagEncodingFailedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO17tagEncodingFailedyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "asn1ParsingFailed",
+ "printedName": "asn1ParsingFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO17asn1ParsingFailedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO17asn1ParsingFailedyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAsn1RootNode",
+ "printedName": "invalidAsn1RootNode",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO19invalidAsn1RootNodeyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO19invalidAsn1RootNodeyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidAsn1Structure",
+ "printedName": "invalidAsn1Structure",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO20invalidAsn1StructureyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO20invalidAsn1StructureyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidBase64String",
+ "printedName": "invalidBase64String",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO19invalidBase64StringyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO19invalidBase64StringyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "chunkDecryptFailed",
+ "printedName": "chunkDecryptFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.Int) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(index: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO18chunkDecryptFailedyACSi_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO18chunkDecryptFailedyACSi_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "chunkEncryptFailed",
+ "printedName": "chunkEncryptFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.Int) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(index: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO18chunkEncryptFailedyACSi_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO18chunkEncryptFailedyACSi_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "stringToDataConversionFailed",
+ "printedName": "stringToDataConversionFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO28stringToDataConversionFailedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO28stringToDataConversionFailedyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "dataToStringConversionFailed",
+ "printedName": "dataToStringConversionFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO28dataToStringConversionFailedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO28dataToStringConversionFailedyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "invalidDigestSize",
+ "printedName": "invalidDigestSize",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.Int, Swift.Int) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int, Swift.Int) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(digestSize: Swift.Int, maxChunkSize: Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO17invalidDigestSizeyACSi_SitcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO17invalidDigestSizeyACSi_SitcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "signatureCreateFailed",
+ "printedName": "signatureCreateFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.Int32) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int32) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(status: Swift.Int32)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO21signatureCreateFailedyACs5Int32V_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO21signatureCreateFailedyACs5Int32V_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "signatureVerifyFailed",
+ "printedName": "signatureVerifyFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.Int32) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.Int32) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(status: Swift.Int32)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO21signatureVerifyFailedyACs5Int32V_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO21signatureVerifyFailedyACs5Int32V_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "pemFileNotFound",
+ "printedName": "pemFileNotFound",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.String) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(name: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO15pemFileNotFoundyACSS_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO15pemFileNotFoundyACSS_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "derFileNotFound",
+ "printedName": "derFileNotFound",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> (Swift.String) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(name: Swift.String)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO15derFileNotFoundyACSS_tcACmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO15derFileNotFoundyACSS_tcACmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "notAPublicKey",
+ "printedName": "notAPublicKey",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO13notAPublicKeyyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO13notAPublicKeyyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "notAPrivateKey",
+ "printedName": "notAPrivateKey",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO14notAPrivateKeyyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO14notAPrivateKeyyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "Var",
+ "name": "x509CertificateFailed",
+ "printedName": "x509CertificateFailed",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK.SwiftyRSAError.Type) -> PlaudBleSDK.SwiftyRSAError",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK.SwiftyRSAError.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SwiftyRSAError",
+ "printedName": "PlaudBleSDK.SwiftyRSAError",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO21x509CertificateFailedyA2CmF",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO21x509CertificateFailedyA2CmF",
+ "moduleName": "PlaudBleSDK"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK14SwiftyRSAErrorO",
+ "mangledName": "$s11PlaudBleSDK14SwiftyRSAErrorO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "EncryptedMessage",
+ "printedName": "EncryptedMessage",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK16EncryptedMessageC4data10Foundation4DataVvp",
+ "mangledName": "$s11PlaudBleSDK16EncryptedMessageC4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "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:11PlaudBleSDK16EncryptedMessageC4data10Foundation4DataVvg",
+ "mangledName": "$s11PlaudBleSDK16EncryptedMessageC4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EncryptedMessage",
+ "printedName": "PlaudBleSDK.EncryptedMessage",
+ "usr": "s:11PlaudBleSDK16EncryptedMessageC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK16EncryptedMessageC4dataAC10Foundation4DataV_tcfc",
+ "mangledName": "$s11PlaudBleSDK16EncryptedMessageC4dataAC10Foundation4DataV_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "decrypted",
+ "printedName": "decrypted(with:padding:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ClearMessage",
+ "printedName": "PlaudBleSDK.ClearMessage",
+ "usr": "s:11PlaudBleSDK12ClearMessageC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PrivateKey",
+ "printedName": "PlaudBleSDK.PrivateKey",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecPadding",
+ "printedName": "Security.SecPadding",
+ "usr": "c:@E@SecPadding"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK16EncryptedMessageC9decrypted4with7paddingAA05ClearE0CAA10PrivateKeyC_So10SecPaddingVtKF",
+ "mangledName": "$s11PlaudBleSDK16EncryptedMessageC9decrypted4with7paddingAA05ClearE0CAA10PrivateKeyC_So10SecPaddingVtKF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK16EncryptedMessageC",
+ "mangledName": "$s11PlaudBleSDK16EncryptedMessageC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Message",
+ "printedName": "Message",
+ "usr": "s:11PlaudBleSDK7MessageP",
+ "mangledName": "$s11PlaudBleSDK7MessageP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Security",
+ "printedName": "Security",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "SwiftyRSA",
+ "printedName": "SwiftyRSA",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "generateRSAKeyPair",
+ "printedName": "generateRSAKeyPair(sizeInBits:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(privateKey: PlaudBleSDK.PrivateKey, publicKey: PlaudBleSDK.PublicKey)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "PrivateKey",
+ "printedName": "PlaudBleSDK.PrivateKey",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PublicKey",
+ "printedName": "PlaudBleSDK.PublicKey",
+ "usr": "s:11PlaudBleSDK9PublicKeyC"
+ }
+ ]
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK9SwiftyRSAO18generateRSAKeyPair10sizeInBitsAA10PrivateKeyC07privateM0_AA06PublicM0C06publicM0tSi_tKFZ",
+ "mangledName": "$s11PlaudBleSDK9SwiftyRSAO18generateRSAKeyPair10sizeInBitsAA10PrivateKeyC07privateM0_AA06PublicM0C06publicM0tSi_tKFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "intro_iOS": "10.0",
+ "intro_tvOS": "10.0",
+ "intro_watchOS": "3.0",
+ "declAttributes": [
+ "AccessControl",
+ "Available",
+ "Available",
+ "Available",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK9SwiftyRSAO",
+ "mangledName": "$s11PlaudBleSDK9SwiftyRSAO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "ClearMessage",
+ "printedName": "ClearMessage",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK12ClearMessageC4data10Foundation4DataVvp",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "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:11PlaudBleSDK12ClearMessageC4data10Foundation4DataVvg",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ClearMessage",
+ "printedName": "PlaudBleSDK.ClearMessage",
+ "usr": "s:11PlaudBleSDK12ClearMessageC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK12ClearMessageC4dataAC10Foundation4DataV_tcfc",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC4dataAC10Foundation4DataV_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:using:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ClearMessage",
+ "printedName": "PlaudBleSDK.ClearMessage",
+ "usr": "s:11PlaudBleSDK12ClearMessageC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoding",
+ "printedName": "Swift.String.Encoding",
+ "usr": "s:SS10FoundationE8EncodingV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK12ClearMessageC6string5usingACSS_SS10FoundationE8EncodingVtKcfc",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC6string5usingACSS_SS10FoundationE8EncodingVtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Convenience",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "string",
+ "printedName": "string(encoding:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Encoding",
+ "printedName": "Swift.String.Encoding",
+ "usr": "s:SS10FoundationE8EncodingV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK12ClearMessageC6string8encodingS2S10FoundationE8EncodingV_tKF",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC6string8encodingS2S10FoundationE8EncodingV_tKF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "encrypted",
+ "printedName": "encrypted(with:padding:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "EncryptedMessage",
+ "printedName": "PlaudBleSDK.EncryptedMessage",
+ "usr": "s:11PlaudBleSDK16EncryptedMessageC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PublicKey",
+ "printedName": "PlaudBleSDK.PublicKey",
+ "usr": "s:11PlaudBleSDK9PublicKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecPadding",
+ "printedName": "Security.SecPadding",
+ "usr": "c:@E@SecPadding"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK12ClearMessageC9encrypted4with7paddingAA09EncryptedE0CAA9PublicKeyC_So10SecPaddingVtKF",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC9encrypted4with7paddingAA09EncryptedE0CAA9PublicKeyC_So10SecPaddingVtKF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "signed",
+ "printedName": "signed(with:digestType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Signature",
+ "printedName": "PlaudBleSDK.Signature",
+ "usr": "s:11PlaudBleSDK9SignatureC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PrivateKey",
+ "printedName": "PlaudBleSDK.PrivateKey",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK12ClearMessageC6signed4with10digestTypeAA9SignatureCAA10PrivateKeyC_AH06DigestI0OtKF",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC6signed4with10digestTypeAA9SignatureCAA10PrivateKeyC_AH06DigestI0OtKF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "verify",
+ "printedName": "verify(with:signature:digestType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PublicKey",
+ "printedName": "PlaudBleSDK.PublicKey",
+ "usr": "s:11PlaudBleSDK9PublicKeyC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Signature",
+ "printedName": "PlaudBleSDK.Signature",
+ "usr": "s:11PlaudBleSDK9SignatureC"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK.Signature.DigestType",
+ "usr": "s:11PlaudBleSDK9SignatureC10DigestTypeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK12ClearMessageC6verify4with9signature10digestTypeSbAA9PublicKeyC_AA9SignatureCAK06DigestJ0OtKF",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC6verify4with9signature10digestTypeSbAA9PublicKeyC_AA9SignatureCAK06DigestJ0OtKF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK12ClearMessageC",
+ "mangledName": "$s11PlaudBleSDK12ClearMessageC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Message",
+ "printedName": "Message",
+ "usr": "s:11PlaudBleSDK7MessageP",
+ "mangledName": "$s11PlaudBleSDK7MessageP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Security",
+ "printedName": "Security",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Key",
+ "printedName": "Key",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "reference",
+ "printedName": "reference",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK3KeyP9referenceSo03SecD3Refavp",
+ "mangledName": "$s11PlaudBleSDK3KeyP9referenceSo03SecD3Refavp",
+ "moduleName": "PlaudBleSDK",
+ "protocolReq": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK3KeyP9referenceSo03SecD3Refavg",
+ "mangledName": "$s11PlaudBleSDK3KeyP9referenceSo03SecD3Refavg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "originalData",
+ "printedName": "originalData",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK3KeyP12originalData10Foundation0F0VSgvp",
+ "mangledName": "$s11PlaudBleSDK3KeyP12originalData10Foundation0F0VSgvp",
+ "moduleName": "PlaudBleSDK",
+ "protocolReq": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK3KeyP12originalData10Foundation0F0VSgvg",
+ "mangledName": "$s11PlaudBleSDK3KeyP12originalData10Foundation0F0VSgvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyP4datax10Foundation4DataV_tKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyP4datax10Foundation4DataV_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(reference:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyP9referencexSo03SecD3Refa_tKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyP9referencexSo03SecD3Refa_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyP13base64EncodedxSS_tKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyP13base64EncodedxSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(pemEncoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyP10pemEncodedxSS_tKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyP10pemEncodedxSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(pemNamed:in:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyP8pemNamed2inxSS_So8NSBundleCtKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyP8pemNamed2inxSS_So8NSBundleCtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(derNamed:in:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyP8derNamed2inxSS_So8NSBundleCtKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyP8derNamed2inxSS_So8NSBundleCtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "pemString",
+ "printedName": "pemString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK3KeyP9pemStringSSyKF",
+ "mangledName": "$s11PlaudBleSDK3KeyP9pemStringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "data",
+ "printedName": "data()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK3KeyP4data10Foundation4DataVyKF",
+ "mangledName": "$s11PlaudBleSDK3KeyP4data10Foundation4DataVyKF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "base64String",
+ "printedName": "base64String()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK3KeyP12base64StringSSyKF",
+ "mangledName": "$s11PlaudBleSDK3KeyP12base64StringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "throwing": true,
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "base64String",
+ "printedName": "base64String()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK3KeyPAAE12base64StringSSyKF",
+ "mangledName": "$s11PlaudBleSDK3KeyPAAE12base64StringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "data",
+ "printedName": "data()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK3KeyPAAE4data10Foundation4DataVyKF",
+ "mangledName": "$s11PlaudBleSDK3KeyPAAE4data10Foundation4DataVyKF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyPAAE13base64EncodedxSS_tKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyPAAE13base64EncodedxSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "throwing": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(pemEncoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyPAAE10pemEncodedxSS_tKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyPAAE10pemEncodedxSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "throwing": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(pemNamed:in:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "hasDefaultArg": true,
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyPAAE8pemNamed2inxSS_So8NSBundleCtKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyPAAE8pemNamed2inxSS_So8NSBundleCtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "throwing": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(derNamed:in:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "GenericTypeParam",
+ "printedName": "τ_0_0"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "hasDefaultArg": true,
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK3KeyPAAE8derNamed2inxSS_So8NSBundleCtKcfc",
+ "mangledName": "$s11PlaudBleSDK3KeyPAAE8derNamed2inxSS_So8NSBundleCtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.Key>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "throwing": true,
+ "init_kind": "Convenience"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:11PlaudBleSDK3KeyP",
+ "mangledName": "$s11PlaudBleSDK3KeyP",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "BleLogger",
+ "printedName": "BleLogger",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleLogger",
+ "printedName": "PlaudBleSDK.BleLogger",
+ "usr": "s:11PlaudBleSDK0B6LoggerC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK0B6LoggerC6sharedACvpZ",
+ "mangledName": "$s11PlaudBleSDK0B6LoggerC6sharedACvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleLogger",
+ "printedName": "PlaudBleSDK.BleLogger",
+ "usr": "s:11PlaudBleSDK0B6LoggerC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK0B6LoggerC6sharedACvgZ",
+ "mangledName": "$s11PlaudBleSDK0B6LoggerC6sharedACvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "setLog",
+ "printedName": "setLog(opened:logBlock:wlogBlock:sync:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Swift.String) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((Swift.String) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(Swift.String) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "hasDefaultArg": true,
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B6LoggerC6setLog6opened8logBlock04wlogI04syncySb_ySScSgAISbtF",
+ "mangledName": "$s11PlaudBleSDK0B6LoggerC6setLog6opened8logBlock04wlogI04syncySb_ySScSgAISbtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "log",
+ "printedName": "log(_:data:maxBytes:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B6LoggerC3log_4data8maxBytesySS_10Foundation4DataVSgSiSgtF",
+ "mangledName": "$s11PlaudBleSDK0B6LoggerC3log_4data8maxBytesySS_10Foundation4DataVSgSiSgtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "wLog",
+ "printedName": "wLog(_:data:maxBytes:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B6LoggerC4wLog_4data8maxBytesySS_10Foundation4DataVSgSiSgtF",
+ "mangledName": "$s11PlaudBleSDK0B6LoggerC4wLog_4data8maxBytesySS_10Foundation4DataVSgSiSgtF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK0B6LoggerC",
+ "mangledName": "$s11PlaudBleSDK0B6LoggerC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasMissingDesignatedInitializers": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "BleFeatureProvider",
+ "printedName": "BleFeatureProvider",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "isFeatureFlagEnabled",
+ "printedName": "isFeatureFlagEnabled(_:)",
+ "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:11PlaudBleSDK0B15FeatureProviderP02isD11FlagEnabledySbSSF",
+ "mangledName": "$s11PlaudBleSDK0B15FeatureProviderP02isD11FlagEnabledySbSSF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleFeatureProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getFeatureFlag",
+ "printedName": "getFeatureFlag(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B15FeatureProviderP03getD4FlagyypSgSSF",
+ "mangledName": "$s11PlaudBleSDK0B15FeatureProviderP03getD4FlagyypSgSSF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleFeatureProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isAppFeatureConfigEnabled",
+ "printedName": "isAppFeatureConfigEnabled(_:)",
+ "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:11PlaudBleSDK0B15FeatureProviderP05isAppD13ConfigEnabledySbSSF",
+ "mangledName": "$s11PlaudBleSDK0B15FeatureProviderP05isAppD13ConfigEnabledySbSSF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleFeatureProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "getAppFeatureConfig",
+ "printedName": "getAppFeatureConfig(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:11PlaudBleSDK0B15FeatureProviderP06getAppD6ConfigyypSgSSF",
+ "mangledName": "$s11PlaudBleSDK0B15FeatureProviderP06getAppD6ConfigyypSgSSF",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0 where τ_0_0 : PlaudBleSDK.BleFeatureProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "s:11PlaudBleSDK0B15FeatureProviderP",
+ "mangledName": "$s11PlaudBleSDK0B15FeatureProviderP",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "PenBleConfig",
+ "printedName": "PenBleConfig",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "featureProvider",
+ "printedName": "featureProvider",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.BleFeatureProvider)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFeatureProvider",
+ "printedName": "any PlaudBleSDK.BleFeatureProvider",
+ "usr": "s:11PlaudBleSDK0B15FeatureProviderP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:11PlaudBleSDK03PenB6ConfigC15featureProviderAA0b7FeatureG0_pSgvpZ",
+ "mangledName": "$s11PlaudBleSDK03PenB6ConfigC15featureProviderAA0b7FeatureG0_pSgvpZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.BleFeatureProvider)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFeatureProvider",
+ "printedName": "any PlaudBleSDK.BleFeatureProvider",
+ "usr": "s:11PlaudBleSDK0B15FeatureProviderP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK03PenB6ConfigC15featureProviderAA0b7FeatureG0_pSgvgZ",
+ "mangledName": "$s11PlaudBleSDK03PenB6ConfigC15featureProviderAA0b7FeatureG0_pSgvgZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "(any PlaudBleSDK.BleFeatureProvider)?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "BleFeatureProvider",
+ "printedName": "any PlaudBleSDK.BleFeatureProvider",
+ "usr": "s:11PlaudBleSDK0B15FeatureProviderP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK03PenB6ConfigC15featureProviderAA0b7FeatureG0_pSgvsZ",
+ "mangledName": "$s11PlaudBleSDK03PenB6ConfigC15featureProviderAA0b7FeatureG0_pSgvsZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK03PenB6ConfigC15featureProviderAA0b7FeatureG0_pSgvMZ",
+ "mangledName": "$s11PlaudBleSDK03PenB6ConfigC15featureProviderAA0b7FeatureG0_pSgvMZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "s:11PlaudBleSDK03PenB6ConfigC",
+ "mangledName": "$s11PlaudBleSDK03PenB6ConfigC",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "hasMissingDesignatedInitializers": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "CommonCrypto",
+ "printedName": "CommonCrypto",
+ "declKind": "Import",
+ "moduleName": "PlaudBleSDK"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "UpdateInfo",
+ "printedName": "UpdateInfo",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "sn",
+ "printedName": "sn",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)sn",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC2snSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)sn",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC2snSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setSn:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC2snSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC2snSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC2snSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "swVersion",
+ "printedName": "swVersion",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)swVersion",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC9swVersionSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)swVersion",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC9swVersionSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setSwVersion:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC9swVersionSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC9swVersionSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC9swVersionSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currentVersion",
+ "printedName": "currentVersion",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)currentVersion",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC14currentVersionSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)currentVersion",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC14currentVersionSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setCurrentVersion:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC14currentVersionSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC14currentVersionSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC14currentVersionSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "version",
+ "printedName": "version",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)version",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC7versionSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)version",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC7versionSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setVersion:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC7versionSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC7versionSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC7versionSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "url",
+ "printedName": "url",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)url",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC3urlSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)url",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC3urlSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setUrl:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC3urlSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC3urlSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC3urlSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "size",
+ "printedName": "size",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)size",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC4sizeSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)size",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC4sizeSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "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": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setSize:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC4sizeSivs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC4sizeSivM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC4sizeSivM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "modifyDesc",
+ "printedName": "modifyDesc",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)modifyDesc",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10modifyDescSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)modifyDesc",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10modifyDescSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setModifyDesc:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10modifyDescSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC10modifyDescSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10modifyDescSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "updateDesc",
+ "printedName": "updateDesc",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)updateDesc",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10updateDescSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)updateDesc",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10updateDescSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setUpdateDesc:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10updateDescSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC10updateDescSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10updateDescSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "updatePreTip",
+ "printedName": "updatePreTip",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)updatePreTip",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC12updatePreTipSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)updatePreTip",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC12updatePreTipSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setUpdatePreTip:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC12updatePreTipSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC12updatePreTipSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC12updatePreTipSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "updatingTip",
+ "printedName": "updatingTip",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)updatingTip",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC11updatingTipSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)updatingTip",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC11updatingTipSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setUpdatingTip:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC11updatingTipSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC11updatingTipSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC11updatingTipSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "failureTip",
+ "printedName": "failureTip",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)failureTip",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10failureTipSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)failureTip",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10failureTipSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setFailureTip:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10failureTipSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC10failureTipSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC10failureTipSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "fromVersion",
+ "printedName": "fromVersion",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)fromVersion",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC11fromVersionSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)fromVersion",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC11fromVersionSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setFromVersion:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC11fromVersionSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC11fromVersionSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC11fromVersionSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "toVersion",
+ "printedName": "toVersion",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)toVersion",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC9toVersionSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)toVersion",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC9toVersionSSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setToVersion:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC9toVersionSSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC9toVersionSSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC9toVersionSSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "md5",
+ "printedName": "md5",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(py)md5",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC3md5SSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "HasInitialValue",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)md5",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC3md5SSvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)setMd5:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC3md5SSvs",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK10UpdateInfoC3md5SSvM",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC3md5SSvM",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UpdateInfo",
+ "printedName": "PlaudBleSDK.UpdateInfo",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)init",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "hasNewVersion",
+ "printedName": "hasNewVersion(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "BleDevice",
+ "printedName": "PlaudBleSDK.BleDevice",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)hasNewVersion:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC13hasNewVersionySbAA0B6DeviceCF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "checkMD5",
+ "printedName": "checkMD5(path:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)checkMD5WithPath:",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC8checkMD54pathSbSS_tF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "checkMD5WithPath:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "toString",
+ "printedName": "toString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo(im)toString",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC8toStringSSyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)UpdateInfo",
+ "mangledName": "$s11PlaudBleSDK10UpdateInfoC",
+ "moduleName": "PlaudBleSDK",
+ "isOpen": true,
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "_objc_PublicKey",
+ "printedName": "_objc_PublicKey",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "reference",
+ "printedName": "reference",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(py)reference",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC9referenceSo03SecF3Refavp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)reference",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC9referenceSo03SecF3Refavg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "originalData",
+ "printedName": "originalData",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(py)originalData",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC12originalData10Foundation0H0VSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)originalData",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC12originalData10Foundation0H0VSgvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "pemString",
+ "printedName": "pemString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)pemStringAndReturnError:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC9pemStringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "pemStringAndReturnError:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "data",
+ "printedName": "data()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)dataAndReturnError:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC4data10Foundation4DataVyKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "dataAndReturnError:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "base64String",
+ "printedName": "base64String()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)base64StringAndReturnError:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC12base64StringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "base64StringAndReturnError:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(swiftValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PublicKey",
+ "printedName": "PlaudBleSDK.PublicKey",
+ "usr": "s:11PlaudBleSDK9PublicKeyC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK15_objc_PublicKeyC10swiftValueAcA0eF0C_tcfc",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC10swiftValueAcA0eF0C_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "Required"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)initWithData:error:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC4dataAC10Foundation4DataV_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithData:error:",
+ "declAttributes": [
+ "AccessControl",
+ "Required",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(reference:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)initWithReference:error:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC9referenceACSo03SecF3Refa_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithReference:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)initWithBase64Encoded:error:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC13base64EncodedACSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithBase64Encoded:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(pemEncoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)initWithPemEncoded:error:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC10pemEncodedACSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithPemEncoded:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(pemNamed:in:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)initWithPemNamed:in:error:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC8pemNamed2inACSS_So8NSBundleCtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithPemNamed:in:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(derNamed:in:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)initWithDerNamed:in:error:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC8derNamed2inACSS_So8NSBundleCtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithDerNamed:in:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "publicKeys",
+ "printedName": "publicKeys(pemEncoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[PlaudBleSDK._objc_PublicKey]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ }
+ ],
+ "usr": "s:Sa"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(cm)publicKeysWithPemEncoded:",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC10publicKeys10pemEncodedSayACGSS_tFZ",
+ "moduleName": "PlaudBleSDK",
+ "static": true,
+ "objc_name": "publicKeysWithPemEncoded:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey(im)init",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey",
+ "mangledName": "$s11PlaudBleSDK15_objc_PublicKeyC",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "PublicKey",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Key",
+ "printedName": "Key",
+ "usr": "s:11PlaudBleSDK3KeyP",
+ "mangledName": "$s11PlaudBleSDK3KeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "_objc_PrivateKey",
+ "printedName": "_objc_PrivateKey",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "reference",
+ "printedName": "reference",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(py)reference",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC9referenceSo03SecF3Refavp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)reference",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC9referenceSo03SecF3Refavg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "originalData",
+ "printedName": "originalData",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(py)originalData",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC12originalData10Foundation0H0VSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)originalData",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC12originalData10Foundation0H0VSgvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "pemString",
+ "printedName": "pemString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)pemStringAndReturnError:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC9pemStringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "pemStringAndReturnError:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "data",
+ "printedName": "data()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)dataAndReturnError:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC4data10Foundation4DataVyKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "dataAndReturnError:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "base64String",
+ "printedName": "base64String()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)base64StringAndReturnError:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC12base64StringSSyKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "base64StringAndReturnError:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(swiftValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "PrivateKey",
+ "printedName": "PlaudBleSDK.PrivateKey",
+ "usr": "s:11PlaudBleSDK10PrivateKeyC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK16_objc_PrivateKeyC10swiftValueAcA0eF0C_tcfc",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC10swiftValueAcA0eF0C_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Required",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)initWithData:error:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC4dataAC10Foundation4DataV_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithData:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(reference:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecKey",
+ "printedName": "Security.SecKey",
+ "usr": "c:@T@SecKeyRef"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)initWithReference:error:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC9referenceACSo03SecF3Refa_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithReference:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)initWithBase64Encoded:error:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC13base64EncodedACSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithBase64Encoded:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(pemEncoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)initWithPemEncoded:error:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC10pemEncodedACSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithPemEncoded:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(pemNamed:in:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)initWithPemNamed:in:error:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC8pemNamed2inACSS_So8NSBundleCtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithPemNamed:in:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(derNamed:in:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bundle",
+ "printedName": "Foundation.Bundle",
+ "usr": "c:objc(cs)NSBundle"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)initWithDerNamed:in:error:",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC8derNamed2inACSS_So8NSBundleCtKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithDerNamed:in:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey(im)init",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey",
+ "mangledName": "$s11PlaudBleSDK16_objc_PrivateKeyC",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "PrivateKey",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Key",
+ "printedName": "Key",
+ "usr": "s:11PlaudBleSDK3KeyP",
+ "mangledName": "$s11PlaudBleSDK3KeyP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "_objc_VerificationResult",
+ "printedName": "_objc_VerificationResult",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "isSuccessful",
+ "printedName": "isSuccessful",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)VerificationResult(py)isSuccessful",
+ "mangledName": "$s11PlaudBleSDK24_objc_VerificationResultC12isSuccessfulSbvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "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": "c:@M@PlaudBleSDK@objc(cs)VerificationResult(im)isSuccessful",
+ "mangledName": "$s11PlaudBleSDK24_objc_VerificationResultC12isSuccessfulSbvg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_VerificationResult",
+ "printedName": "PlaudBleSDK._objc_VerificationResult",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)VerificationResult"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)VerificationResult(im)init",
+ "mangledName": "$s11PlaudBleSDK24_objc_VerificationResultCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)VerificationResult",
+ "mangledName": "$s11PlaudBleSDK24_objc_VerificationResultC",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "VerificationResult",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "_objc_ClearMessage",
+ "printedName": "_objc_ClearMessage",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "base64String",
+ "printedName": "base64String",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(py)base64String",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC12base64StringSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)base64String",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC12base64StringSSvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(py)data",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)data",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(swiftValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_ClearMessage",
+ "printedName": "PlaudBleSDK._objc_ClearMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ClearMessage",
+ "printedName": "PlaudBleSDK.ClearMessage",
+ "usr": "s:11PlaudBleSDK12ClearMessageC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK18_objc_ClearMessageC10swiftValueAcA0eF0C_tcfc",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC10swiftValueAcA0eF0C_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Required",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_ClearMessage",
+ "printedName": "PlaudBleSDK._objc_ClearMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)initWithData:",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC4dataAC10Foundation4DataV_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithData:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(string:using:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_ClearMessage",
+ "printedName": "PlaudBleSDK._objc_ClearMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt",
+ "printedName": "Swift.UInt",
+ "usr": "s:Su"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)initWithString:using:error:",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC6string5usingACSS_SutKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithString:using:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_ClearMessage",
+ "printedName": "PlaudBleSDK._objc_ClearMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)initWithBase64Encoded:error:",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC13base64EncodedACSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithBase64Encoded:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "string",
+ "printedName": "string(encoding:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "UInt",
+ "printedName": "Swift.UInt",
+ "usr": "s:Su"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)stringWithEncoding:error:",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC6string8encodingSSSu_tKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "stringWithEncoding:error:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "encrypted",
+ "printedName": "encrypted(with:padding:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_EncryptedMessage",
+ "printedName": "PlaudBleSDK._objc_EncryptedMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecPadding",
+ "printedName": "Security.SecPadding",
+ "usr": "c:@E@SecPadding"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)encryptedWith:padding:error:",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC9encrypted4with7paddingAA01_d10_EncryptedF0CAA01_D10_PublicKeyC_So10SecPaddingVtKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "encryptedWith:padding:error:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "signed",
+ "printedName": "signed(with:digestType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_Signature",
+ "printedName": "PlaudBleSDK._objc_Signature",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)signedWith:digestType:error:",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC6signed4with10digestTypeAA01_D10_SignatureCAA01_D11_PrivateKeyC_AH06DigestJ0OtKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "signedWith:digestType:error:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "verify",
+ "printedName": "verify(with:signature:digestType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_VerificationResult",
+ "printedName": "PlaudBleSDK._objc_VerificationResult",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)VerificationResult"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PublicKey",
+ "printedName": "PlaudBleSDK._objc_PublicKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PublicKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_Signature",
+ "printedName": "PlaudBleSDK._objc_Signature",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)verifyWith:signature:digestType:error:",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC6verify4with9signature10digestTypeAA01_D19_VerificationResultCAA01_D10_PublicKeyC_AA01_D10_SignatureCAM06DigestK0OtKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "verifyWith:signature:digestType:error:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_ClearMessage",
+ "printedName": "PlaudBleSDK._objc_ClearMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage(im)init",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage",
+ "mangledName": "$s11PlaudBleSDK18_objc_ClearMessageC",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "ClearMessage",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Message",
+ "printedName": "Message",
+ "usr": "s:11PlaudBleSDK7MessageP",
+ "mangledName": "$s11PlaudBleSDK7MessageP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "_objc_EncryptedMessage",
+ "printedName": "_objc_EncryptedMessage",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "base64String",
+ "printedName": "base64String",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage(py)base64String",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC12base64StringSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage(im)base64String",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC12base64StringSSvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage(py)data",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage(im)data",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(swiftValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_EncryptedMessage",
+ "printedName": "PlaudBleSDK._objc_EncryptedMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "EncryptedMessage",
+ "printedName": "PlaudBleSDK.EncryptedMessage",
+ "usr": "s:11PlaudBleSDK16EncryptedMessageC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK22_objc_EncryptedMessageC10swiftValueAcA0eF0C_tcfc",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC10swiftValueAcA0eF0C_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Required",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_EncryptedMessage",
+ "printedName": "PlaudBleSDK._objc_EncryptedMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage(im)initWithData:",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC4dataAC10Foundation4DataV_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithData:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_EncryptedMessage",
+ "printedName": "PlaudBleSDK._objc_EncryptedMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage(im)initWithBase64Encoded:error:",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC13base64EncodedACSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithBase64Encoded:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "decrypted",
+ "printedName": "decrypted(with:padding:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_ClearMessage",
+ "printedName": "PlaudBleSDK._objc_ClearMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)ClearMessage"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_PrivateKey",
+ "printedName": "PlaudBleSDK._objc_PrivateKey",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)PrivateKey"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "SecPadding",
+ "printedName": "Security.SecPadding",
+ "usr": "c:@E@SecPadding"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage(im)decryptedWith:padding:error:",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC9decrypted4with7paddingAA01_d6_ClearF0CAA01_D11_PrivateKeyC_So10SecPaddingVtKF",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "decryptedWith:padding:error:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_EncryptedMessage",
+ "printedName": "PlaudBleSDK._objc_EncryptedMessage",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage(im)init",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)EncryptedMessage",
+ "mangledName": "$s11PlaudBleSDK22_objc_EncryptedMessageC",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "EncryptedMessage",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Message",
+ "printedName": "Message",
+ "usr": "s:11PlaudBleSDK7MessageP",
+ "mangledName": "$s11PlaudBleSDK7MessageP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "_objc_Signature",
+ "printedName": "_objc_Signature",
+ "children": [
+ {
+ "kind": "TypeDecl",
+ "name": "DigestType",
+ "printedName": "DigestType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "sha1",
+ "printedName": "sha1",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK._objc_Signature.DigestType.Type) -> PlaudBleSDK._objc_Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO4sha1yA2EmF",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO4sha1yA2EmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 0
+ },
+ {
+ "kind": "Var",
+ "name": "sha224",
+ "printedName": "sha224",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK._objc_Signature.DigestType.Type) -> PlaudBleSDK._objc_Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO6sha224yA2EmF",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO6sha224yA2EmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 1
+ },
+ {
+ "kind": "Var",
+ "name": "sha256",
+ "printedName": "sha256",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK._objc_Signature.DigestType.Type) -> PlaudBleSDK._objc_Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO6sha256yA2EmF",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO6sha256yA2EmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 2
+ },
+ {
+ "kind": "Var",
+ "name": "sha384",
+ "printedName": "sha384",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK._objc_Signature.DigestType.Type) -> PlaudBleSDK._objc_Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO6sha384yA2EmF",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO6sha384yA2EmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 3
+ },
+ {
+ "kind": "Var",
+ "name": "sha512",
+ "printedName": "sha512",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(PlaudBleSDK._objc_Signature.DigestType.Type) -> PlaudBleSDK._objc_Signature.DigestType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Metatype",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType.Type",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "declKind": "EnumElement",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO6sha512yA2EmF",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO6sha512yA2EmF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "fixedbinaryorder": 4
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(rawValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DigestType",
+ "printedName": "PlaudBleSDK._objc_Signature.DigestType",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO8rawValueAESgSi_tcfc",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO8rawValueAESgSi_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "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:11PlaudBleSDK15_objc_SignatureC10DigestTypeO8rawValueSivp",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO8rawValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO8rawValueSivg",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO8rawValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "implicit": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10DigestTypeO",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10DigestTypeO",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "enumRawTypeName": "Int",
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "Var",
+ "name": "base64String",
+ "printedName": "base64String",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature(py)base64String",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC12base64StringSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature(im)base64String",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC12base64StringSSvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature(py)data",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature(im)data",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(swiftValue:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_Signature",
+ "printedName": "PlaudBleSDK._objc_Signature",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Signature",
+ "printedName": "PlaudBleSDK.Signature",
+ "usr": "s:11PlaudBleSDK9SignatureC"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "s:11PlaudBleSDK15_objc_SignatureC10swiftValueAcA0E0C_tcfc",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC10swiftValueAcA0E0C_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "Required",
+ "AccessControl"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_Signature",
+ "printedName": "PlaudBleSDK._objc_Signature",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature(im)initWithData:",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC4dataAC10Foundation4DataV_tcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithData:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(base64Encoded:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_Signature",
+ "printedName": "PlaudBleSDK._objc_Signature",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature(im)initWithBase64Encoded:error:",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC13base64EncodedACSS_tKcfc",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "initWithBase64Encoded:error:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC"
+ ],
+ "throwing": true,
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "_objc_Signature",
+ "printedName": "PlaudBleSDK._objc_Signature",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature(im)init",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureCACycfc",
+ "moduleName": "PlaudBleSDK",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@PlaudBleSDK@objc(cs)Signature",
+ "mangledName": "$s11PlaudBleSDK15_objc_SignatureC",
+ "moduleName": "PlaudBleSDK",
+ "objc_name": "Signature",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "Data",
+ "printedName": "Data",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "hexDescription",
+ "printedName": "hexDescription",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE14hexDescriptionSSvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE14hexDescriptionSSvp",
+ "moduleName": "PlaudBleSDK",
+ "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:10Foundation4DataV11PlaudBleSDKE14hexDescriptionSSvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE14hexDescriptionSSvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dictionary",
+ "printedName": "dictionary",
+ "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": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE10dictionarySDySSypGvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE10dictionarySDySSypGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "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": "Accessor",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE10dictionarySDySSypGvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE10dictionarySDySSypGvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "subData",
+ "printedName": "subData(begin:count:)",
+ "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"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE03subB05begin5countACSi_SitF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE03subB05begin5countACSi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "safeSubdata",
+ "printedName": "safeSubdata(in:)",
+ "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": "Range",
+ "printedName": "Swift.Range",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sn"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE11safeSubdata2inACSgSnySiG_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE11safeSubdata2inACSgSnySiG_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "safeSubdata",
+ "printedName": "safeSubdata(offset:count:)",
+ "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": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE11safeSubdata6offset5countACSgSi_SitF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE11safeSubdata6offset5countACSgSi_SitF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "floatValue",
+ "printedName": "floatValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Float",
+ "printedName": "Swift.Float",
+ "usr": "s:Sf"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE10floatValueSfvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE10floatValueSfvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Float",
+ "printedName": "Swift.Float",
+ "usr": "s:Sf"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE10floatValueSfvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE10floatValueSfvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "int8",
+ "printedName": "int8",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int8",
+ "printedName": "Swift.Int8",
+ "usr": "s:s4Int8V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE4int8s4Int8Vvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE4int8s4Int8Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int8",
+ "printedName": "Swift.Int8",
+ "usr": "s:s4Int8V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE4int8s4Int8Vvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE4int8s4Int8Vvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uint8",
+ "printedName": "uint8",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE5uint8s5UInt8Vvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE5uint8s5UInt8Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE5uint8s5UInt8Vvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE5uint8s5UInt8Vvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uint16",
+ "printedName": "uint16",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt16",
+ "printedName": "Swift.UInt16",
+ "usr": "s:s6UInt16V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint16s6UInt16Vvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint16s6UInt16Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt16",
+ "printedName": "Swift.UInt16",
+ "usr": "s:s6UInt16V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint16s6UInt16Vvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint16s6UInt16Vvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uint24",
+ "printedName": "uint24",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint24s6UInt32Vvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint24s6UInt32Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint24s6UInt32Vvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint24s6UInt32Vvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uint32",
+ "printedName": "uint32",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint32s6UInt32Vvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint32s6UInt32Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint32s6UInt32Vvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint32s6UInt32Vvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uint64",
+ "printedName": "uint64",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt64",
+ "printedName": "Swift.UInt64",
+ "usr": "s:s6UInt64V"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint64s6UInt64Vvp",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint64s6UInt64Vvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt64",
+ "printedName": "Swift.UInt64",
+ "usr": "s:s6UInt64V"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint64s6UInt64Vvg",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint64s6UInt64Vvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "int8",
+ "printedName": "int8(at:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE4int82atS2i_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE4int82atS2i_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "uint8",
+ "printedName": "uint8(at:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE5uint82ats5UInt8VSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE5uint82ats5UInt8VSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "int16",
+ "printedName": "int16(at:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int16",
+ "printedName": "Swift.Int16",
+ "usr": "s:s5Int16V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE5int162ats5Int16VSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE5int162ats5Int16VSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "uint16",
+ "printedName": "uint16(at:)",
+ "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:10Foundation4DataV11PlaudBleSDKE6uint162ats6UInt16VSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint162ats6UInt16VSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "uint24",
+ "printedName": "uint24(at:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint242ats6UInt32VSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint242ats6UInt32VSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "int32",
+ "printedName": "int32(at:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE5int322ats5Int32VSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE5int322ats5Int32VSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "uint32",
+ "printedName": "uint32(at:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE6uint322ats6UInt32VSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint322ats6UInt32VSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "int64",
+ "printedName": "int64(at:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int64",
+ "printedName": "Swift.Int64",
+ "usr": "s:s5Int64V"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE5int642ats5Int64VSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE5int642ats5Int64VSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "uint64",
+ "printedName": "uint64(at:)",
+ "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:10Foundation4DataV11PlaudBleSDKE6uint642ats6UInt64VSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE6uint642ats6UInt64VSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "float",
+ "printedName": "float(at:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Float",
+ "printedName": "Swift.Float",
+ "usr": "s:Sf"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE5float2atSfSi_tF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE5float2atSfSi_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "prependx509Header",
+ "printedName": "prependx509Header()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE17prependx509HeaderACyF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE17prependx509HeaderACyF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "hasX509Header",
+ "printedName": "hasX509Header()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE13hasX509HeaderSbyKF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE13hasX509HeaderSbyKF",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "throwing": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isAnHeaderlessKey",
+ "printedName": "isAnHeaderlessKey()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DataV11PlaudBleSDKE17isAnHeaderlessKeySbyKF",
+ "mangledName": "$s10Foundation4DataV11PlaudBleSDKE17isAnHeaderlessKeySbyKF",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "throwing": 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": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "Date",
+ "printedName": "Date",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "stampMillisec",
+ "printedName": "stampMillisec",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DateV11PlaudBleSDKE13stampMillisecSivp",
+ "mangledName": "$s10Foundation4DateV11PlaudBleSDKE13stampMillisecSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DateV11PlaudBleSDKE13stampMillisecSivg",
+ "mangledName": "$s10Foundation4DateV11PlaudBleSDKE13stampMillisecSivg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "stampSec",
+ "printedName": "stampSec",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DateV11PlaudBleSDKE8stampSecSivp",
+ "mangledName": "$s10Foundation4DateV11PlaudBleSDKE8stampSecSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation4DateV11PlaudBleSDKE8stampSecSivg",
+ "mangledName": "$s10Foundation4DateV11PlaudBleSDKE8stampSecSivg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "logTime",
+ "printedName": "logTime",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation4DateV11PlaudBleSDKE7logTimeSSvp",
+ "mangledName": "$s10Foundation4DateV11PlaudBleSDKE7logTimeSSvp",
+ "moduleName": "PlaudBleSDK",
+ "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:10Foundation4DateV11PlaudBleSDKE7logTimeSSvg",
+ "mangledName": "$s10Foundation4DateV11PlaudBleSDKE7logTimeSSvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:10Foundation4DateV",
+ "mangledName": "$s10Foundation4DateV",
+ "moduleName": "Foundation",
+ "intro_Macosx": "10.10",
+ "intro_iOS": "8.0",
+ "intro_tvOS": "9.0",
+ "intro_watchOS": "2.0",
+ "declAttributes": [
+ "Available",
+ "Available",
+ "Available",
+ "Available"
+ ],
+ "isExternal": true,
+ "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": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "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": "ReferenceConvertible",
+ "printedName": "ReferenceConvertible",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "ReferenceType",
+ "printedName": "ReferenceType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDate",
+ "printedName": "Foundation.NSDate",
+ "usr": "c:objc(cs)NSDate"
+ }
+ ]
+ }
+ ],
+ "usr": "s:10Foundation20ReferenceConvertibleP",
+ "mangledName": "$s10Foundation20ReferenceConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDate",
+ "printedName": "Foundation.NSDate",
+ "usr": "c:objc(cs)NSDate"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_CustomPlaygroundQuickLookable",
+ "printedName": "_CustomPlaygroundQuickLookable",
+ "usr": "s:s30_CustomPlaygroundQuickLookableP",
+ "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "TimeZone",
+ "printedName": "TimeZone",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "numValue",
+ "printedName": "numValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:10Foundation8TimeZoneV11PlaudBleSDKE8numValueSivp",
+ "mangledName": "$s10Foundation8TimeZoneV11PlaudBleSDKE8numValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:10Foundation8TimeZoneV11PlaudBleSDKE8numValueSivg",
+ "mangledName": "$s10Foundation8TimeZoneV11PlaudBleSDKE8numValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "getHourAndMin",
+ "printedName": "getHourAndMin()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(Swift.Int, Swift.Int)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation8TimeZoneV11PlaudBleSDKE13getHourAndMinSi_SityF",
+ "mangledName": "$s10Foundation8TimeZoneV11PlaudBleSDKE13getHourAndMinSi_SityF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:10Foundation8TimeZoneV",
+ "mangledName": "$s10Foundation8TimeZoneV",
+ "moduleName": "Foundation",
+ "intro_Macosx": "10.10",
+ "intro_iOS": "8.0",
+ "intro_tvOS": "9.0",
+ "intro_watchOS": "2.0",
+ "declAttributes": [
+ "Available",
+ "Available",
+ "Available",
+ "Available"
+ ],
+ "isExternal": 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": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "ReferenceConvertible",
+ "printedName": "ReferenceConvertible",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "ReferenceType",
+ "printedName": "ReferenceType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSTimeZone",
+ "printedName": "Foundation.NSTimeZone",
+ "usr": "c:objc(cs)NSTimeZone"
+ }
+ ]
+ }
+ ],
+ "usr": "s:10Foundation20ReferenceConvertibleP",
+ "mangledName": "$s10Foundation20ReferenceConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSTimeZone",
+ "printedName": "Foundation.NSTimeZone",
+ "usr": "c:objc(cs)NSTimeZone"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "String",
+ "printedName": "String",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "md5Hex",
+ "printedName": "md5Hex",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:SS11PlaudBleSDKE6md5HexSSvp",
+ "mangledName": "$sSS11PlaudBleSDKE6md5HexSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:SS11PlaudBleSDKE6md5HexSSvg",
+ "mangledName": "$sSS11PlaudBleSDKE6md5HexSSvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dictionary",
+ "printedName": "dictionary",
+ "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": "Var",
+ "usr": "s:SS11PlaudBleSDKE10dictionarySDySSypGvp",
+ "mangledName": "$sSS11PlaudBleSDKE10dictionarySDySSypGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "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": "Accessor",
+ "usr": "s:SS11PlaudBleSDKE10dictionarySDySSypGvg",
+ "mangledName": "$sSS11PlaudBleSDKE10dictionarySDySSypGvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "isNotEmpty",
+ "printedName": "isNotEmpty",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:SS11PlaudBleSDKE10isNotEmptySbvp",
+ "mangledName": "$sSS11PlaudBleSDKE10isNotEmptySbvp",
+ "moduleName": "PlaudBleSDK",
+ "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:SS11PlaudBleSDKE10isNotEmptySbvg",
+ "mangledName": "$sSS11PlaudBleSDKE10isNotEmptySbvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:SS",
+ "mangledName": "$sSS",
+ "moduleName": "Swift",
+ "declAttributes": [
+ "EagerMove",
+ "Frozen"
+ ],
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "Optional",
+ "printedName": "Optional",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "exist",
+ "printedName": "exist",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:Sq11PlaudBleSDKE5existSbvp",
+ "mangledName": "$sSq11PlaudBleSDKE5existSbvp",
+ "moduleName": "PlaudBleSDK",
+ "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:Sq11PlaudBleSDKE5existSbvg",
+ "mangledName": "$sSq11PlaudBleSDKE5existSbvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "stringValue",
+ "printedName": "stringValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:Sq11PlaudBleSDKE11stringValueSSvp",
+ "mangledName": "$sSq11PlaudBleSDKE11stringValueSSvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:Sq11PlaudBleSDKE11stringValueSSvg",
+ "mangledName": "$sSq11PlaudBleSDKE11stringValueSSvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "intValue",
+ "printedName": "intValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:Sq11PlaudBleSDKE8intValueSivp",
+ "mangledName": "$sSq11PlaudBleSDKE8intValueSivp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:Sq11PlaudBleSDKE8intValueSivg",
+ "mangledName": "$sSq11PlaudBleSDKE8intValueSivg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "doubleValue",
+ "printedName": "doubleValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:Sq11PlaudBleSDKE11doubleValueSdvp",
+ "mangledName": "$sSq11PlaudBleSDKE11doubleValueSdvp",
+ "moduleName": "PlaudBleSDK",
+ "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:Sq11PlaudBleSDKE11doubleValueSdvg",
+ "mangledName": "$sSq11PlaudBleSDKE11doubleValueSdvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "boolValue",
+ "printedName": "boolValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:Sq11PlaudBleSDKE9boolValueSbvp",
+ "mangledName": "$sSq11PlaudBleSDKE9boolValueSbvp",
+ "moduleName": "PlaudBleSDK",
+ "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:Sq11PlaudBleSDKE9boolValueSbvg",
+ "mangledName": "$sSq11PlaudBleSDKE9boolValueSbvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "arrayValue",
+ "printedName": "arrayValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:Sq11PlaudBleSDKE10arrayValueSaySDySSypGGvp",
+ "mangledName": "$sSq11PlaudBleSDKE10arrayValueSaySDySSypGGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "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:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:Sq11PlaudBleSDKE10arrayValueSaySDySSypGGvg",
+ "mangledName": "$sSq11PlaudBleSDKE10arrayValueSaySDySSypGGvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "jsonObj",
+ "printedName": "jsonObj",
+ "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": "Var",
+ "usr": "s:Sq11PlaudBleSDKE7jsonObjSDySSypGSgvp",
+ "mangledName": "$sSq11PlaudBleSDKE7jsonObjSDySSypGSgvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "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": "Accessor",
+ "usr": "s:Sq11PlaudBleSDKE7jsonObjSDySSypGSgvg",
+ "mangledName": "$sSq11PlaudBleSDKE7jsonObjSDySSypGSgvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "jsonValue",
+ "printedName": "jsonValue",
+ "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": "Var",
+ "usr": "s:Sq11PlaudBleSDKE9jsonValueSDySSypGvp",
+ "mangledName": "$sSq11PlaudBleSDKE9jsonValueSDySSypGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "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": "Accessor",
+ "usr": "s:Sq11PlaudBleSDKE9jsonValueSDySSypGvg",
+ "mangledName": "$sSq11PlaudBleSDKE9jsonValueSDySSypGvg",
+ "moduleName": "PlaudBleSDK",
+ "genericSig": "<τ_0_0>",
+ "sugared_genericSig": "",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "s:Sq",
+ "mangledName": "$sSq",
+ "moduleName": "Swift",
+ "genericSig": "<τ_0_0 where τ_0_0 : ~Copyable>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "Frozen"
+ ],
+ "isExternal": true,
+ "isEnumExhaustive": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "BitwiseCopyable",
+ "printedName": "BitwiseCopyable",
+ "usr": "s:s15BitwiseCopyableP",
+ "mangledName": "$ss15BitwiseCopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "ExpressibleByNilLiteral",
+ "printedName": "ExpressibleByNilLiteral",
+ "usr": "s:s23ExpressibleByNilLiteralP",
+ "mangledName": "$ss23ExpressibleByNilLiteralP"
+ },
+ {
+ "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": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "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": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "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": "TypeDecl",
+ "name": "Int8",
+ "printedName": "Int8",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:s4Int8V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "mangledName": "$ss4Int8V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:s4Int8V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "mangledName": "$ss4Int8V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:s4Int8V",
+ "mangledName": "$ss4Int8V",
+ "moduleName": "Swift",
+ "declAttributes": [
+ "Frozen"
+ ],
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "FixedWidthInteger",
+ "printedName": "FixedWidthInteger",
+ "usr": "s:s17FixedWidthIntegerP",
+ "mangledName": "$ss17FixedWidthIntegerP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "SignedInteger",
+ "printedName": "SignedInteger",
+ "usr": "s:SZ",
+ "mangledName": "$sSZ"
+ },
+ {
+ "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.Int8.Words",
+ "usr": "s:s4Int8V5WordsV"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sz",
+ "mangledName": "$sSz"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LosslessStringConvertible",
+ "printedName": "LosslessStringConvertible",
+ "usr": "s:s25LosslessStringConvertibleP",
+ "mangledName": "$ss25LosslessStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "SignedNumeric",
+ "printedName": "SignedNumeric",
+ "usr": "s:s13SignedNumericP",
+ "mangledName": "$ss13SignedNumericP"
+ },
+ {
+ "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": "Int8",
+ "printedName": "Swift.Int8",
+ "usr": "s:s4Int8V"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s27ExpressibleByIntegerLiteralP",
+ "mangledName": "$ss27ExpressibleByIntegerLiteralP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "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.Int8.SIMD2Storage",
+ "usr": "s:s4Int8V12SIMD2StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD4Storage",
+ "printedName": "SIMD4Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD4Storage",
+ "printedName": "Swift.Int8.SIMD4Storage",
+ "usr": "s:s4Int8V12SIMD4StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD8Storage",
+ "printedName": "SIMD8Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD8Storage",
+ "printedName": "Swift.Int8.SIMD8Storage",
+ "usr": "s:s4Int8V12SIMD8StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD16Storage",
+ "printedName": "SIMD16Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD16Storage",
+ "printedName": "Swift.Int8.SIMD16Storage",
+ "usr": "s:s4Int8V13SIMD16StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD32Storage",
+ "printedName": "SIMD32Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD32Storage",
+ "printedName": "Swift.Int8.SIMD32Storage",
+ "usr": "s:s4Int8V13SIMD32StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD64Storage",
+ "printedName": "SIMD64Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD64Storage",
+ "printedName": "Swift.Int8.SIMD64Storage",
+ "usr": "s:s4Int8V13SIMD64StorageV"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s10SIMDScalarP",
+ "mangledName": "$ss10SIMDScalarP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "BitwiseCopyable",
+ "printedName": "BitwiseCopyable",
+ "usr": "s:s15BitwiseCopyableP",
+ "mangledName": "$ss15BitwiseCopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_FormatSpecifiable",
+ "printedName": "_FormatSpecifiable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_Arg",
+ "printedName": "_Arg",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ }
+ ]
+ }
+ ],
+ "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": "UInt8",
+ "printedName": "UInt8",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:s5UInt8V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "mangledName": "$ss5UInt8V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:s5UInt8V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "mangledName": "$ss5UInt8V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "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": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "BitwiseCopyable",
+ "printedName": "BitwiseCopyable",
+ "usr": "s:s15BitwiseCopyableP",
+ "mangledName": "$ss15BitwiseCopyableP"
+ },
+ {
+ "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": "UInt16",
+ "printedName": "UInt16",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:s6UInt16V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "mangledName": "$ss6UInt16V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:s6UInt16V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "mangledName": "$ss6UInt16V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:s6UInt16V",
+ "mangledName": "$ss6UInt16V",
+ "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.UInt16.Words",
+ "usr": "s:s6UInt16V5WordsV"
+ }
+ ]
+ }
+ ],
+ "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": "UInt16",
+ "printedName": "Swift.UInt16",
+ "usr": "s:s6UInt16V"
+ }
+ ]
+ }
+ ],
+ "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": "UInt16",
+ "printedName": "Swift.UInt16",
+ "usr": "s:s6UInt16V"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s27ExpressibleByIntegerLiteralP",
+ "mangledName": "$ss27ExpressibleByIntegerLiteralP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "Int16",
+ "printedName": "Swift.Int16",
+ "usr": "s:s5Int16V"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD2Storage",
+ "printedName": "SIMD2Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD2Storage",
+ "printedName": "Swift.UInt16.SIMD2Storage",
+ "usr": "s:s6UInt16V12SIMD2StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD4Storage",
+ "printedName": "SIMD4Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD4Storage",
+ "printedName": "Swift.UInt16.SIMD4Storage",
+ "usr": "s:s6UInt16V12SIMD4StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD8Storage",
+ "printedName": "SIMD8Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD8Storage",
+ "printedName": "Swift.UInt16.SIMD8Storage",
+ "usr": "s:s6UInt16V12SIMD8StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD16Storage",
+ "printedName": "SIMD16Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD16Storage",
+ "printedName": "Swift.UInt16.SIMD16Storage",
+ "usr": "s:s6UInt16V13SIMD16StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD32Storage",
+ "printedName": "SIMD32Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD32Storage",
+ "printedName": "Swift.UInt16.SIMD32Storage",
+ "usr": "s:s6UInt16V13SIMD32StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD64Storage",
+ "printedName": "SIMD64Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD64Storage",
+ "printedName": "Swift.UInt16.SIMD64Storage",
+ "usr": "s:s6UInt16V13SIMD64StorageV"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s10SIMDScalarP",
+ "mangledName": "$ss10SIMDScalarP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "BitwiseCopyable",
+ "printedName": "BitwiseCopyable",
+ "usr": "s:s15BitwiseCopyableP",
+ "mangledName": "$ss15BitwiseCopyableP"
+ },
+ {
+ "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": "Int16",
+ "printedName": "Int16",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:s5Int16V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "mangledName": "$ss5Int16V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:s5Int16V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "mangledName": "$ss5Int16V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:s5Int16V",
+ "mangledName": "$ss5Int16V",
+ "moduleName": "Swift",
+ "declAttributes": [
+ "Frozen"
+ ],
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "FixedWidthInteger",
+ "printedName": "FixedWidthInteger",
+ "usr": "s:s17FixedWidthIntegerP",
+ "mangledName": "$ss17FixedWidthIntegerP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "SignedInteger",
+ "printedName": "SignedInteger",
+ "usr": "s:SZ",
+ "mangledName": "$sSZ"
+ },
+ {
+ "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.Int16.Words",
+ "usr": "s:s5Int16V5WordsV"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sz",
+ "mangledName": "$sSz"
+ },
+ {
+ "kind": "Conformance",
+ "name": "LosslessStringConvertible",
+ "printedName": "LosslessStringConvertible",
+ "usr": "s:s25LosslessStringConvertibleP",
+ "mangledName": "$ss25LosslessStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "SignedNumeric",
+ "printedName": "SignedNumeric",
+ "usr": "s:s13SignedNumericP",
+ "mangledName": "$ss13SignedNumericP"
+ },
+ {
+ "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": "UInt16",
+ "printedName": "Swift.UInt16",
+ "usr": "s:s6UInt16V"
+ }
+ ]
+ }
+ ],
+ "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": "Int16",
+ "printedName": "Swift.Int16",
+ "usr": "s:s5Int16V"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s27ExpressibleByIntegerLiteralP",
+ "mangledName": "$ss27ExpressibleByIntegerLiteralP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "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": "Int16",
+ "printedName": "Swift.Int16",
+ "usr": "s:s5Int16V"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD2Storage",
+ "printedName": "SIMD2Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD2Storage",
+ "printedName": "Swift.Int16.SIMD2Storage",
+ "usr": "s:s5Int16V12SIMD2StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD4Storage",
+ "printedName": "SIMD4Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD4Storage",
+ "printedName": "Swift.Int16.SIMD4Storage",
+ "usr": "s:s5Int16V12SIMD4StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD8Storage",
+ "printedName": "SIMD8Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD8Storage",
+ "printedName": "Swift.Int16.SIMD8Storage",
+ "usr": "s:s5Int16V12SIMD8StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD16Storage",
+ "printedName": "SIMD16Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD16Storage",
+ "printedName": "Swift.Int16.SIMD16Storage",
+ "usr": "s:s5Int16V13SIMD16StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD32Storage",
+ "printedName": "SIMD32Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD32Storage",
+ "printedName": "Swift.Int16.SIMD32Storage",
+ "usr": "s:s5Int16V13SIMD32StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD64Storage",
+ "printedName": "SIMD64Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD64Storage",
+ "printedName": "Swift.Int16.SIMD64Storage",
+ "usr": "s:s5Int16V13SIMD64StorageV"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s10SIMDScalarP",
+ "mangledName": "$ss10SIMDScalarP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "BitwiseCopyable",
+ "printedName": "BitwiseCopyable",
+ "usr": "s:s15BitwiseCopyableP",
+ "mangledName": "$ss15BitwiseCopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_FormatSpecifiable",
+ "printedName": "_FormatSpecifiable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_Arg",
+ "printedName": "_Arg",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ }
+ ]
+ }
+ ],
+ "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": "UInt32",
+ "printedName": "UInt32",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:s6UInt32V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "mangledName": "$ss6UInt32V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:s6UInt32V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "mangledName": "$ss6UInt32V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "data24",
+ "printedName": "data24",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:s6UInt32V11PlaudBleSDKE6data2410Foundation4DataVvp",
+ "mangledName": "$ss6UInt32V11PlaudBleSDKE6data2410Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:s6UInt32V11PlaudBleSDKE6data2410Foundation4DataVvg",
+ "mangledName": "$ss6UInt32V11PlaudBleSDKE6data2410Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "byteArrayLittleEndian",
+ "printedName": "byteArrayLittleEndian",
+ "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:s6UInt32V11PlaudBleSDKE21byteArrayLittleEndianSays5UInt8VGvp",
+ "mangledName": "$ss6UInt32V11PlaudBleSDKE21byteArrayLittleEndianSays5UInt8VGvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[Swift.UInt8]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt8",
+ "printedName": "Swift.UInt8",
+ "usr": "s:s5UInt8V"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:s6UInt32V11PlaudBleSDKE21byteArrayLittleEndianSays5UInt8VGvg",
+ "mangledName": "$ss6UInt32V11PlaudBleSDKE21byteArrayLittleEndianSays5UInt8VGvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:s6UInt32V",
+ "mangledName": "$ss6UInt32V",
+ "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.UInt32.Words",
+ "usr": "s:s6UInt32V5WordsV"
+ }
+ ]
+ }
+ ],
+ "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": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ]
+ }
+ ],
+ "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": "UInt32",
+ "printedName": "Swift.UInt32",
+ "usr": "s:s6UInt32V"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s27ExpressibleByIntegerLiteralP",
+ "mangledName": "$ss27ExpressibleByIntegerLiteralP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "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": "Int32",
+ "printedName": "Swift.Int32",
+ "usr": "s:s5Int32V"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD2Storage",
+ "printedName": "SIMD2Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD2Storage",
+ "printedName": "Swift.UInt32.SIMD2Storage",
+ "usr": "s:s6UInt32V12SIMD2StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD4Storage",
+ "printedName": "SIMD4Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD4Storage",
+ "printedName": "Swift.UInt32.SIMD4Storage",
+ "usr": "s:s6UInt32V12SIMD4StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD8Storage",
+ "printedName": "SIMD8Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD8Storage",
+ "printedName": "Swift.UInt32.SIMD8Storage",
+ "usr": "s:s6UInt32V12SIMD8StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD16Storage",
+ "printedName": "SIMD16Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD16Storage",
+ "printedName": "Swift.UInt32.SIMD16Storage",
+ "usr": "s:s6UInt32V13SIMD16StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD32Storage",
+ "printedName": "SIMD32Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD32Storage",
+ "printedName": "Swift.UInt32.SIMD32Storage",
+ "usr": "s:s6UInt32V13SIMD32StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD64Storage",
+ "printedName": "SIMD64Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD64Storage",
+ "printedName": "Swift.UInt32.SIMD64Storage",
+ "usr": "s:s6UInt32V13SIMD64StorageV"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s10SIMDScalarP",
+ "mangledName": "$ss10SIMDScalarP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "BitwiseCopyable",
+ "printedName": "BitwiseCopyable",
+ "usr": "s:s15BitwiseCopyableP",
+ "mangledName": "$ss15BitwiseCopyableP"
+ },
+ {
+ "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": "UInt64",
+ "printedName": "UInt64",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:s6UInt64V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "mangledName": "$ss6UInt64V11PlaudBleSDKE4data10Foundation4DataVvp",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:s6UInt64V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "mangledName": "$ss6UInt64V11PlaudBleSDKE4data10Foundation4DataVvg",
+ "moduleName": "PlaudBleSDK",
+ "isFromExtension": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:s6UInt64V",
+ "mangledName": "$ss6UInt64V",
+ "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.UInt64.Words",
+ "usr": "s:s6UInt64V5WordsV"
+ }
+ ]
+ }
+ ],
+ "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": "UInt64",
+ "printedName": "Swift.UInt64",
+ "usr": "s:s6UInt64V"
+ }
+ ]
+ }
+ ],
+ "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": "UInt64",
+ "printedName": "Swift.UInt64",
+ "usr": "s:s6UInt64V"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s27ExpressibleByIntegerLiteralP",
+ "mangledName": "$ss27ExpressibleByIntegerLiteralP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_CVarArgAligned",
+ "printedName": "_CVarArgAligned",
+ "usr": "s:s15_CVarArgAlignedP",
+ "mangledName": "$ss15_CVarArgAlignedP"
+ },
+ {
+ "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": "Int64",
+ "printedName": "Swift.Int64",
+ "usr": "s:s5Int64V"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD2Storage",
+ "printedName": "SIMD2Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD2Storage",
+ "printedName": "Swift.UInt64.SIMD2Storage",
+ "usr": "s:s6UInt64V12SIMD2StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD4Storage",
+ "printedName": "SIMD4Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD4Storage",
+ "printedName": "Swift.UInt64.SIMD4Storage",
+ "usr": "s:s6UInt64V12SIMD4StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD8Storage",
+ "printedName": "SIMD8Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD8Storage",
+ "printedName": "Swift.UInt64.SIMD8Storage",
+ "usr": "s:s6UInt64V12SIMD8StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD16Storage",
+ "printedName": "SIMD16Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD16Storage",
+ "printedName": "Swift.UInt64.SIMD16Storage",
+ "usr": "s:s6UInt64V13SIMD16StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD32Storage",
+ "printedName": "SIMD32Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD32Storage",
+ "printedName": "Swift.UInt64.SIMD32Storage",
+ "usr": "s:s6UInt64V13SIMD32StorageV"
+ }
+ ]
+ },
+ {
+ "kind": "TypeWitness",
+ "name": "SIMD64Storage",
+ "printedName": "SIMD64Storage",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "SIMD64Storage",
+ "printedName": "Swift.UInt64.SIMD64Storage",
+ "usr": "s:s6UInt64V13SIMD64StorageV"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s10SIMDScalarP",
+ "mangledName": "$ss10SIMDScalarP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "BitwiseCopyable",
+ "printedName": "BitwiseCopyable",
+ "usr": "s:s15BitwiseCopyableP",
+ "mangledName": "$ss15BitwiseCopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_FormatSpecifiable",
+ "printedName": "_FormatSpecifiable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_Arg",
+ "printedName": "_Arg",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt64",
+ "printedName": "Swift.UInt64",
+ "usr": "s:s6UInt64V"
+ }
+ ]
+ }
+ ],
+ "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": "FileManager",
+ "printedName": "FileManager",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "fileSize",
+ "printedName": "fileSize(path:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So13NSFileManagerC11PlaudBleSDKE8fileSize4pathSiSS_tF",
+ "mangledName": "$sSo13NSFileManagerC11PlaudBleSDKE8fileSize4pathSiSS_tF",
+ "moduleName": "PlaudBleSDK",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:objc(cs)NSFileManager",
+ "moduleName": "Foundation",
+ "isOpen": true,
+ "objc_name": "NSFileManager",
+ "declAttributes": [
+ "ObjC",
+ "NonSendable",
+ "Dynamic"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "isExternal": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "Copyable",
+ "printedName": "Copyable",
+ "usr": "s:s8CopyableP",
+ "mangledName": "$ss8CopyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Escapable",
+ "printedName": "Escapable",
+ "usr": "s:s9EscapableP",
+ "mangledName": "$ss9EscapableP"
+ },
+ {
+ "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"
+ }
+ ]
+ }
+ ],
+ "json_format_version": 8
+ },
+ "ConstValues": [
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "StringLiteral",
+ "offset": 316,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 397,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 449,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 536,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 685,
+ "length": 1,
+ "value": "8"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 796,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 863,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 927,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 980,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1053,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1131,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1244,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1907,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1926,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2245,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2264,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3662,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5657,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5689,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5721,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleFile.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5753,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1140,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1281,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 25987,
+ "length": 7,
+ "value": "\"start\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26022,
+ "length": 14,
+ "value": "\"gatt_connect\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26062,
+ "length": 12,
+ "value": "\"set_notify\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26107,
+ "length": 20,
+ "value": "\"set_battery_notify\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26155,
+ "length": 14,
+ "value": "\"read_battery\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26199,
+ "length": 17,
+ "value": "\"set_data_notify\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26245,
+ "length": 15,
+ "value": "\"pre_handshake\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26290,
+ "length": 17,
+ "value": "\"send_rsa_public\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26338,
+ "length": 17,
+ "value": "\"first_handshake\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26384,
+ "length": 15,
+ "value": "\"two_handshake\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26431,
+ "length": 19,
+ "value": "\"handshake_get_ssn\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26489,
+ "length": 26,
+ "value": "\"change_handshake_timeout\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 26540,
+ "length": 11,
+ "value": "\"sync_time\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 26659,
+ "length": 1,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 26739,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Array",
+ "offset": 27302,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27385,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27492,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27593,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27719,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Array",
+ "offset": 27776,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Array",
+ "offset": 27851,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28319,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 28511,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28619,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28708,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28812,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 28895,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 28951,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 29070,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29167,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 29209,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 29287,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29331,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 29423,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29521,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29620,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 29841,
+ "length": 3,
+ "value": "500"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 29967,
+ "length": 19,
+ "value": "\"writeWithResponse\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 30310,
+ "length": 20,
+ "value": "\"ai.plaud.ble.parse\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 30391,
+ "length": 6,
+ "value": "30000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 30523,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 30572,
+ "length": 5,
+ "value": "10000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30613,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30652,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 30888,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30985,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Dictionary",
+ "offset": 31057,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Array",
+ "offset": 31126,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 31193,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 31259,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31546,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 31633,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 31724,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 31775,
+ "length": 3,
+ "value": "\"V\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 31824,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33096,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 53464,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 79205,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 82128,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 87498,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 88859,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 89983,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 92777,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 93124,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 95860,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 98709,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 98742,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 129713,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154536,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154633,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154699,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154719,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154770,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154775,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154794,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154798,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 154803,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 155631,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 155636,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Array",
+ "offset": 155706,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 158204,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 158264,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 158319,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 158376,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 158426,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 160182,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 160200,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Array",
+ "offset": 160233,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 160860,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 160888,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 160914,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Array",
+ "offset": 160947,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 162022,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "IntegerLiteral",
+ "offset": 162041,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "Array",
+ "offset": 162073,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 179013,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleAgent.swift",
+ "kind": "StringLiteral",
+ "offset": 179448,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 604,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 653,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "FloatLiteral",
+ "offset": 723,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 785,
+ "length": 6,
+ "value": "0x0046"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 869,
+ "length": 5,
+ "value": "\"MTK\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 936,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 1012,
+ "length": 3,
+ "value": "\"V\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 1091,
+ "length": 3,
+ "value": "\"V\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1153,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 1228,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1315,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1379,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1467,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1531,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1593,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1689,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1755,
+ "length": 1,
+ "value": "8"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1828,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1885,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1952,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2033,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2127,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2240,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2330,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2464,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2555,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2744,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2827,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2922,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3051,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 3091,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3147,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3209,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 3586,
+ "length": 12,
+ "value": "\"^.*\\d{4}$\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 3631,
+ "length": 17,
+ "value": "\"SELF MATCHES %@\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3710,
+ "length": 3,
+ "value": "712"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 3739,
+ "length": 14,
+ "value": "\"IzyRec\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 3752,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3791,
+ "length": 3,
+ "value": "888"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3813,
+ "length": 3,
+ "value": "880"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 3842,
+ "length": 32,
+ "value": "\"PLAUD\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3870,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 3873,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3912,
+ "length": 3,
+ "value": "881"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4017,
+ "length": 32,
+ "value": "\"Plaud\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4045,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4048,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4102,
+ "length": 32,
+ "value": "\"PLAUD\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4130,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4133,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4190,
+ "length": 3,
+ "value": "882"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4220,
+ "length": 32,
+ "value": "\"Plaud\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4248,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4251,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4286,
+ "length": 16,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4294,
+ "length": 1,
+ "value": "\"-\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4301,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4432,
+ "length": 12,
+ "value": "\"^.*\\d{4}$\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4477,
+ "length": 17,
+ "value": "\"SELF MATCHES %@\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4556,
+ "length": 3,
+ "value": "712"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4596,
+ "length": 2,
+ "value": "22"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4628,
+ "length": 33,
+ "value": "\"iZYREC\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4657,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4660,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4703,
+ "length": 33,
+ "value": "\"IzyRec\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4732,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4735,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4774,
+ "length": 3,
+ "value": "888"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4796,
+ "length": 3,
+ "value": "880"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4825,
+ "length": 32,
+ "value": "\"PLAUD\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4853,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 4856,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4895,
+ "length": 3,
+ "value": "881"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5000,
+ "length": 32,
+ "value": "\"Plaud\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5028,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5031,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5085,
+ "length": 32,
+ "value": "\"PLAUD\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5113,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5116,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5173,
+ "length": 3,
+ "value": "882"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5203,
+ "length": 32,
+ "value": "\"Plaud\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5231,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5234,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5270,
+ "length": 16,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5278,
+ "length": 1,
+ "value": "\"-\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5285,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5333,
+ "length": 3,
+ "value": "712"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5373,
+ "length": 2,
+ "value": "22"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5405,
+ "length": 33,
+ "value": "\"iZYREC\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5434,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5437,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5480,
+ "length": 33,
+ "value": "\"IzyRec\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5509,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5512,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5551,
+ "length": 3,
+ "value": "888"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5573,
+ "length": 3,
+ "value": "880"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5603,
+ "length": 32,
+ "value": "\"PLAUD\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5631,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5634,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5673,
+ "length": 3,
+ "value": "881"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5778,
+ "length": 32,
+ "value": "\"Plaud\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5806,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5809,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5863,
+ "length": 32,
+ "value": "\"PLAUD\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5891,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5894,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5951,
+ "length": 3,
+ "value": "882"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 5981,
+ "length": 32,
+ "value": "\"Plaud\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6009,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/BleDevice.swift",
+ "kind": "StringLiteral",
+ "offset": 6012,
+ "length": 1,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 257,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 299,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 332,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 366,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 406,
+ "length": 2,
+ "value": "15"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 449,
+ "length": 2,
+ "value": "16"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 488,
+ "length": 2,
+ "value": "17"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 534,
+ "length": 2,
+ "value": "18"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 574,
+ "length": 2,
+ "value": "19"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 618,
+ "length": 2,
+ "value": "32"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 658,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 704,
+ "length": 2,
+ "value": "21"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 747,
+ "length": 2,
+ "value": "22"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 805,
+ "length": 2,
+ "value": "23"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 860,
+ "length": 2,
+ "value": "24"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 930,
+ "length": 2,
+ "value": "25"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 993,
+ "length": 2,
+ "value": "26"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1036,
+ "length": 2,
+ "value": "27"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1076,
+ "length": 2,
+ "value": "30"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1129,
+ "length": 2,
+ "value": "31"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1258,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1275,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1360,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1371,
+ "length": 7,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1380,
+ "length": 7,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1389,
+ "length": 7,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1398,
+ "length": 7,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1407,
+ "length": 7,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1495,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1506,
+ "length": 5,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1513,
+ "length": 5,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1520,
+ "length": 9,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1612,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1640,
+ "length": 11,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1678,
+ "length": 7,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1747,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1758,
+ "length": 6,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1774,
+ "length": 9,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1793,
+ "length": 9,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1823,
+ "length": 5,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1838,
+ "length": 7,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1855,
+ "length": 4,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1908,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 1930,
+ "length": 2,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2000,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2011,
+ "length": 10,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2069,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2093,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2140,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2160,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2178,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2248,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2259,
+ "length": 9,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2322,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2361,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2402,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2472,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2483,
+ "length": 4,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4031,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4076,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4122,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4165,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4218,
+ "length": 1,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4323,
+ "length": 6,
+ "value": "0xFE10"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4379,
+ "length": 6,
+ "value": "0xFE20"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4451,
+ "length": 6,
+ "value": "0xFE12"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4496,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4527,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4563,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4602,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4639,
+ "length": 1,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4680,
+ "length": 1,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4730,
+ "length": 1,
+ "value": "7"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4774,
+ "length": 1,
+ "value": "8"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4815,
+ "length": 1,
+ "value": "9"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4854,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4903,
+ "length": 2,
+ "value": "11"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4950,
+ "length": 2,
+ "value": "12"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4997,
+ "length": 2,
+ "value": "13"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5055,
+ "length": 2,
+ "value": "14"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5096,
+ "length": 2,
+ "value": "15"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5158,
+ "length": 2,
+ "value": "17"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5212,
+ "length": 2,
+ "value": "18"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5263,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5306,
+ "length": 2,
+ "value": "21"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5350,
+ "length": 2,
+ "value": "22"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5392,
+ "length": 2,
+ "value": "23"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5441,
+ "length": 2,
+ "value": "24"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5488,
+ "length": 2,
+ "value": "25"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5542,
+ "length": 2,
+ "value": "26"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5593,
+ "length": 2,
+ "value": "28"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5637,
+ "length": 2,
+ "value": "29"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5685,
+ "length": 2,
+ "value": "30"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5727,
+ "length": 2,
+ "value": "35"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5791,
+ "length": 2,
+ "value": "38"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5862,
+ "length": 2,
+ "value": "50"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5902,
+ "length": 2,
+ "value": "51"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5957,
+ "length": 2,
+ "value": "61"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6011,
+ "length": 3,
+ "value": "101"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6070,
+ "length": 3,
+ "value": "102"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6119,
+ "length": 3,
+ "value": "103"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6164,
+ "length": 3,
+ "value": "104"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6214,
+ "length": 3,
+ "value": "105"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6264,
+ "length": 3,
+ "value": "106"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6313,
+ "length": 3,
+ "value": "107"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6367,
+ "length": 3,
+ "value": "108"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6420,
+ "length": 3,
+ "value": "109"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6458,
+ "length": 3,
+ "value": "110"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6503,
+ "length": 3,
+ "value": "112"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6577,
+ "length": 3,
+ "value": "114"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6647,
+ "length": 3,
+ "value": "116"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6738,
+ "length": 3,
+ "value": "120"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6813,
+ "length": 3,
+ "value": "121"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6887,
+ "length": 3,
+ "value": "122"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6965,
+ "length": 3,
+ "value": "123"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7038,
+ "length": 3,
+ "value": "124"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7116,
+ "length": 3,
+ "value": "125"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7184,
+ "length": 3,
+ "value": "128"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7247,
+ "length": 3,
+ "value": "130"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7313,
+ "length": 3,
+ "value": "131"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7379,
+ "length": 3,
+ "value": "138"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7439,
+ "length": 3,
+ "value": "139"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7493,
+ "length": 3,
+ "value": "140"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7544,
+ "length": 3,
+ "value": "141"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7597,
+ "length": 3,
+ "value": "142"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7660,
+ "length": 3,
+ "value": "143"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7722,
+ "length": 3,
+ "value": "145"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7780,
+ "length": 3,
+ "value": "146"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7881,
+ "length": 6,
+ "value": "0xFE11"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7937,
+ "length": 6,
+ "value": "0xFE12"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7982,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8019,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8055,
+ "length": 1,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8094,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8131,
+ "length": 1,
+ "value": "5"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8166,
+ "length": 1,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8210,
+ "length": 1,
+ "value": "7"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8254,
+ "length": 1,
+ "value": "8"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8295,
+ "length": 1,
+ "value": "9"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8340,
+ "length": 2,
+ "value": "10"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8383,
+ "length": 2,
+ "value": "11"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8430,
+ "length": 2,
+ "value": "12"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8477,
+ "length": 2,
+ "value": "13"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8535,
+ "length": 2,
+ "value": "14"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8576,
+ "length": 2,
+ "value": "15"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8619,
+ "length": 2,
+ "value": "16"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8675,
+ "length": 2,
+ "value": "17"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8729,
+ "length": 2,
+ "value": "18"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8786,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8829,
+ "length": 2,
+ "value": "21"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8873,
+ "length": 2,
+ "value": "22"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8915,
+ "length": 2,
+ "value": "23"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8965,
+ "length": 2,
+ "value": "26"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9015,
+ "length": 2,
+ "value": "28"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9062,
+ "length": 2,
+ "value": "29"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9109,
+ "length": 2,
+ "value": "30"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9157,
+ "length": 2,
+ "value": "31"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9212,
+ "length": 2,
+ "value": "33"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9256,
+ "length": 2,
+ "value": "34"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9298,
+ "length": 2,
+ "value": "35"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9348,
+ "length": 2,
+ "value": "36"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9400,
+ "length": 2,
+ "value": "38"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9471,
+ "length": 2,
+ "value": "50"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9511,
+ "length": 2,
+ "value": "51"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9560,
+ "length": 2,
+ "value": "52"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9609,
+ "length": 2,
+ "value": "61"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9651,
+ "length": 3,
+ "value": "103"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9696,
+ "length": 3,
+ "value": "104"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9737,
+ "length": 3,
+ "value": "106"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9777,
+ "length": 3,
+ "value": "108"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9819,
+ "length": 3,
+ "value": "109"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9857,
+ "length": 3,
+ "value": "110"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9899,
+ "length": 3,
+ "value": "113"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9966,
+ "length": 3,
+ "value": "117"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10051,
+ "length": 3,
+ "value": "120"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10133,
+ "length": 3,
+ "value": "121"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10214,
+ "length": 3,
+ "value": "122"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10299,
+ "length": 3,
+ "value": "123"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10379,
+ "length": 3,
+ "value": "124"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10464,
+ "length": 3,
+ "value": "125"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10545,
+ "length": 3,
+ "value": "126"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10581,
+ "length": 3,
+ "value": "128"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10657,
+ "length": 3,
+ "value": "130"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10729,
+ "length": 3,
+ "value": "131"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10802,
+ "length": 3,
+ "value": "138"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10862,
+ "length": 3,
+ "value": "139"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10916,
+ "length": 3,
+ "value": "140"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10967,
+ "length": 3,
+ "value": "141"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 11020,
+ "length": 3,
+ "value": "142"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 11083,
+ "length": 3,
+ "value": "143"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 11147,
+ "length": 3,
+ "value": "144"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 11205,
+ "length": 3,
+ "value": "145"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 11262,
+ "length": 3,
+ "value": "146"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14402,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "StringLiteral",
+ "offset": 114869,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 114894,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 114935,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115087,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115147,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115213,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115287,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115346,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115406,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115466,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "Array",
+ "offset": 115533,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "Array",
+ "offset": 115609,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115678,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115742,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115806,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115870,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115920,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 115979,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116036,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116088,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116140,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116197,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116268,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116333,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116396,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116497,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116547,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116598,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116663,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116713,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116804,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116848,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116899,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116943,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 116999,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117049,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117108,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117168,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117232,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117301,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117365,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117420,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117471,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117524,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/Commond.swift",
+ "kind": "IntegerLiteral",
+ "offset": 117591,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 374,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 455,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 541,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2160,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2183,
+ "length": 5,
+ "value": "16000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4433,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6692,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9277,
+ "length": 4,
+ "value": "1000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 9326,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 9600,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 9844,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9920,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 12237,
+ "length": 4,
+ "value": "1000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 12363,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 12608,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 12865,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 12941,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 13015,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 13109,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 14036,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 17811,
+ "length": 25,
+ "value": "\"\/Library\/Caches\/tmp.pcm\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 17898,
+ "length": 25,
+ "value": "\"\/Library\/Caches\/tmp.wav\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 17983,
+ "length": 26,
+ "value": "\"\/Library\/Caches\/left.pcm\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 18070,
+ "length": 27,
+ "value": "\"\/Library\/Caches\/right.pcm\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 18160,
+ "length": 26,
+ "value": "\"\/Library\/Caches\/left.wav\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 18250,
+ "length": 27,
+ "value": "\"\/Library\/Caches\/right.wav\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 18340,
+ "length": 26,
+ "value": "\"\/Library\/Caches\/left.lyc\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 18430,
+ "length": 27,
+ "value": "\"\/Library\/Caches\/right.lyc\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 18902,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 18926,
+ "length": 5,
+ "value": "16000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 23261,
+ "length": 6,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 23269,
+ "length": 4,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 279,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 357,
+ "length": 3,
+ "value": "160"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 435,
+ "length": 3,
+ "value": "320"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 863,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2575,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 2694,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 2782,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 2889,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 2978,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 3073,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 3174,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 3257,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 3350,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "Array",
+ "offset": 3444,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 3505,
+ "length": 24,
+ "value": "\"ai.plaud.avcToPcmQueue\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3562,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3970,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3994,
+ "length": 5,
+ "value": "16000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 5113,
+ "length": 5,
+ "value": "16000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13717,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13748,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 13805,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 13834,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13854,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 17190,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20431,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 20485,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 20537,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20586,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24445,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 24499,
+ "length": 1,
+ "value": "4"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 24520,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27713,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 27737,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27755,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29426,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 29450,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29468,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 34798,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34816,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34878,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 35864,
+ "length": 23,
+ "value": "\"fileSize: \""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 35886,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 35918,
+ "length": 11,
+ "value": "\"avcToWave\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 35965,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36065,
+ "length": 5,
+ "value": "16000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36131,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36205,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36248,
+ "length": 2,
+ "value": "-2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36322,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36403,
+ "length": 3,
+ "value": "100"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36417,
+ "length": 1,
+ "value": "8"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36547,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 36599,
+ "length": 31,
+ "value": "\"avcToWav.progress:\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 36629,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 38364,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38431,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 38509,
+ "length": 1,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38581,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 39735,
+ "length": 23,
+ "value": "\"fileSize: \""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 39757,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 39789,
+ "length": 11,
+ "value": "\"avcToWave\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 39836,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 39950,
+ "length": 5,
+ "value": "16000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40054,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40142,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40185,
+ "length": 2,
+ "value": "-2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40273,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40354,
+ "length": 3,
+ "value": "100"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40368,
+ "length": 1,
+ "value": "8"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40498,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 40550,
+ "length": 31,
+ "value": "\"avcToWav.progress:\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "StringLiteral",
+ "offset": 40580,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 41774,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 41820,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41879,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 42002,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 42085,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 42183,
+ "length": 3,
+ "value": "512"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 42260,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 42332,
+ "length": 2,
+ "value": "45"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 42436,
+ "length": 2,
+ "value": "18"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 42501,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 42594,
+ "length": 2,
+ "value": "26"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43004,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 48739,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 48785,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48844,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 48968,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 49036,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49441,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 53887,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 53918,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54344,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 56110,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 56230,
+ "length": 2,
+ "value": "-1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 56340,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 56343,
+ "length": 1,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 56345,
+ "length": 1,
+ "value": "8"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 56382,
+ "length": 3,
+ "value": "512"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 58058,
+ "length": 1,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 58155,
+ "length": 2,
+ "value": "12"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 58224,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 58244,
+ "length": 2,
+ "value": "12"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 58294,
+ "length": 1,
+ "value": "6"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/JXDecoder.swift",
+ "kind": "IntegerLiteral",
+ "offset": 58411,
+ "length": 2,
+ "value": "20"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 372,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 453,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 539,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2182,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2205,
+ "length": 5,
+ "value": "16000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 4467,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 6746,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 9355,
+ "length": 4,
+ "value": "1000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 9408,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 9686,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 9930,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 10006,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "StringLiteral",
+ "offset": 12398,
+ "length": 46,
+ "value": "\"com.plaud.PDRecordingVolumer.concurrentQueue\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 12653,
+ "length": 4,
+ "value": "1000"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 12779,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 13024,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 13281,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "Array",
+ "offset": 13572,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 13653,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 13727,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 13821,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/PDVolumeHelper.swift",
+ "kind": "IntegerLiteral",
+ "offset": 14760,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/RSASecretConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 122,
+ "length": 498,
+ "value": "\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkFN3FoFnITwajjhq\/aWV\nuHL5uGwgz0INyiBuKKl1Jga9RJUPeBcayki1bBvOl0Br3\/ThFqRYA\/yEP2bKknJT\n1iA8D2OXSw17TFCvOrTXWdfdU\/x\/1Z3XJChFThIXe0S1IinUXWo2WKGMl7FjnjEz\nepHCOcNspb+c\/8MoonvL1ZpT8btqW3z8KnX4AOiIrp2RHb7KVYFufeco7AoWKMLz\nDYr2\/ZaT09FkuE8E7soBY0g24meh62z4dhoC0MIpsjAh\/8YDsbERt640HS\/WKr61\nytOTV67rAhrshyu+\/1BTbWGXhCapwZFC3q4lAjDtqRTFTnByCM9tYkDgnnR+s6Sw\ndQIDAQAB\n-----END PUBLIC KEY-----\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/RSASecretConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 682,
+ "length": 1827,
+ "value": "\"-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCQU3cWgWchPBqO\nOGr9pZW4cvm4bCDPQg3KIG4oqXUmBr1ElQ94FxrKSLVsG86XQGvf9OEWpFgD\/IQ\/\nZsqSclPWIDwPY5dLDXtMUK86tNdZ191T\/H\/VndckKEVOEhd7RLUiKdRdajZYoYyX\nsWOeMTN6kcI5w2ylv5z\/wyiie8vVmlPxu2pbfPwqdfgA6IiunZEdvspVgW595yjs\nChYowvMNivb9lpPT0WS4TwTuygFjSDbiZ6HrbPh2GgLQwimyMCH\/xgOxsRG3rjQd\nL9YqvrXK05NXrusCGuyHK77\/UFNtYZeEJqnBkULeriUCMO2pFMVOcHIIz21iQOCe\ndH6zpLB1AgMBAAECggEAN8nbrbplmAY4qaMLUHLSVhMzjmNVp2f8FpbEnjkqzIEs\nZjdMXHpp46mJX3m8OOExEcgBvhPW5euVX0Cnq0ZAO\/QH41b2448Zix1hLss6t0Ln\nDhD7hSJXSGW8rHn307FyZvtOWLG2wjnoM7bhMAQKxyVSs6tj8woHcSIKMgyydSV2\nTzTAv7IU5KWZ3zdXrM7tMIvMITgrwGMvIFyvCsAweXbaI86TjzGfgNiRdWNTMYVK\nRXN3w4ctuziAVBxunvCGvz1WCZ+wZ\/vaPnf\/bwp9s4XtsU74k9oinFtdJ4Zx6WQb\ntiPMCWQVVNDU9oVrfej2FhFQFnkp3QcRMHt2A7pzwQKBgQDU1rar8NOLOXfvE1OT\nCsduOU5sRk6yF87um3jnJvCMfDOWdHq38i0353nVk1INGbsjm0SbAfupmLrJHEoY\nVDBrjDCNzC3DGXBQOLPDx1ZSSCyzUy\/SIk7tTm+DHzdVksVmaqQtCPVU0TKmDxCh\nJcn5Va1DeNUvzn2\/ao7Ctx8+hQKBgQCtl\/3IGmqpFvah6l2+p644UjQxbHU1o0DO\nTX87e56wZrk7TPbhKzoaDi6Qa4nQkPib4p7\/cayNqm2mflOj\/iM56jr+hZr5QETh\nfon6U7RqCc4fS4+e4jcHVM7vDibm\/0hLtvoaXQhk17W+4gtPUZ6cZ8Qj7HB4Y3\/i\n3fmJL0alMQKBgQCQgXdlJg166XnUiHqlyxu8aowkV1f28tM8jbJ4vqdzuqAL9umb\nGoI5AqBlsbBz1JSKiFD8LUyAyYGIKfzkp8R4QKZ2n7oyTINE9DqZIi4pj3dKCaDe\nOwz7cdWkYP1gzFXaQ21UZlCrVZ3dwTy5LL8E2nbY6KFV5AzceayT52D\/QQKBgQCa\n4qQSqE9GczC3Iw9ljuMJaX8cIfMqWnD2IXtGLXRXXDAlUvRrz0\/V85VkUi7yoobP\nP5IxxND6zXdsOAaUqanwgKcGdVrizY8nyul9KrYsbnc0wQxx7NDAf9Dqxqu7K0bs\nF2RrpVpZ74U\/vRvuN5rXXlZI3ysyn0R5vShqWH4l4QKBgA1QDkjb6pAW70kQrXae\nLalm5l4SwArRAs7TATIxQlRqsv01fSw9Jshg5P7CLu\/dxx9F1uraoE14ys8jxvhp\nlEzP8Lhc88Fz89Ke93TcFVuflLcjyRuG8PcAbgqStdpHVks0GXvH2Jb1aZ8HR4Bl\nWYaQHPtZaOaGOzhVqKVMbMBe\n-----END PRIVATE KEY-----\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/SecretUtil.swift",
+ "kind": "IntegerLiteral",
+ "offset": 19907,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftyRSA\/PublicKey.swift",
+ "kind": "StringLiteral",
+ "offset": 2255,
+ "length": 57,
+ "value": "\"(-----BEGIN PUBLIC KEY-----.+?-----END PUBLIC KEY-----)\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftyRSA\/Asn1Parser.swift",
+ "kind": "IntegerLiteral",
+ "offset": 380,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftyRSA\/SwiftyRSA.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4747,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/BleLogger.swift",
+ "kind": "StringLiteral",
+ "offset": 482,
+ "length": 18,
+ "value": "\"0123456789ABCDEF\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/BleLogger.swift",
+ "kind": "StringLiteral",
+ "offset": 1404,
+ "length": 21,
+ "value": "\"ai.plaud.ble.logger\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/BleLogger.swift",
+ "kind": "StringLiteral",
+ "offset": 1477,
+ "length": 27,
+ "value": "\"ai.plaud.ble.logger.write\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/BleLogger.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1607,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/BleLogger.swift",
+ "kind": "BooleanLiteral",
+ "offset": 2215,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/BleLogger.swift",
+ "kind": "IntegerLiteral",
+ "offset": 2756,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/BleLogger.swift",
+ "kind": "IntegerLiteral",
+ "offset": 3855,
+ "length": 2,
+ "value": "80"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 302,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 377,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 458,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 547,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 598,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "IntegerLiteral",
+ "offset": 644,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 701,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 781,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 825,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 868,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 910,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 969,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 1028,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftFiles\/UpdateInfo.swift",
+ "kind": "StringLiteral",
+ "offset": 1085,
+ "length": 2,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftyRSA\/SwiftyRSA+ObjC.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7948,
+ "length": 6,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftyRSA\/SwiftyRSA+ObjC.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7968,
+ "length": 6,
+ "value": "2"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftyRSA\/SwiftyRSA+ObjC.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7988,
+ "length": 6,
+ "value": "3"
+ },
+ {
+ "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenBleSDK\/SwiftyRSA\/SwiftyRSA+ObjC.swift",
+ "kind": "IntegerLiteral",
+ "offset": 8008,
+ "length": 6,
+ "value": "4"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftdoc b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftdoc
new file mode 100644
index 0000000..c82a474
Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftdoc differ
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftinterface b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftinterface
new file mode 100644
index 0000000..a000534
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftinterface
@@ -0,0 +1,1374 @@
+// swift-interface-format-version: 1.0
+// swift-compiler-version: Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)
+// swift-module-flags: -target arm64-apple-ios14.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name PlaudBleSDK
+// swift-module-flags-ignorable: -no-verify-emitted-module-interface
+import CommonCrypto
+import CoreBluetooth
+import CryptoKit
+import Foundation
+@_exported import PlaudBleSDK
+import Security
+import Swift
+import SystemConfiguration
+import UIKit
+import _Concurrency
+import _StringProcessing
+import _SwiftConcurrencyShims
+@_inheritsConvenienceInitializers @objc open class BleFile : ObjectiveC.NSObject {
+ @objc public var sn: Swift.String
+ @objc public var sessionId: Swift.Int
+ @objc public var size: Swift.Int
+ @objc public var offset: Swift.Int
+ @objc public var timezone: Swift.Int
+ @objc public var zoneMin: Swift.Int
+ @objc public var scenes: Swift.Int
+ @objc public var penCollect: Swift.Int
+ @objc public var channels: Swift.Int
+ @objc public var nsAgc: Swift.Bool
+ @objc public var isOgg: Swift.Bool
+ @objc public var isMusic: Swift.Bool {
+ @objc get
+ }
+ @objc override dynamic public init()
+ @objc public init(_ sessionId: Swift.Int, _ size: Swift.Int)
+ @objc public init(_ sn: Swift.String, _ sessionId: Swift.Int, _ size: Swift.Int)
+ @objc public init(_ sn: Swift.String, _ sessionId: Swift.Int, _ size: Swift.Int, _ channels: Swift.Int = 1, _ nsAgc: Swift.Bool = false)
+ @objc public init(_ sn: Swift.String, _ sessionId: Swift.Int, _ size: Swift.Int, _ scenes: Swift.Int, _ penCollect: Swift.Int, _ channels: Swift.Int = 1, _ nsAgc: Swift.Bool = false)
+ @objc public func duration() -> Swift.Int
+ @objc public func oggDuration() -> Swift.Int
+ @objc public func toString() -> Swift.String
+ @objc public static func calculateDuration(_ fileSize: Swift.Int, _ channel: Swift.Int, _ isOgg: Swift.Bool, _ scenes: Swift.Int = 0) -> Swift.Int
+ @objc deinit
+}
+extension PlaudBleSDK.BleFile : Foundation.NSCopying {
+ @objc dynamic public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ @objc dynamic public func zoneSecond() -> Swift.Int
+ @objc dynamic public func utsStamp() -> Swift.Int
+}
+@_inheritsConvenienceInitializers @objc open class GlassData : ObjectiveC.NSObject {
+ @objc public var year: Swift.Int
+ @objc public var month: Swift.Int
+ @objc public var day: Swift.Int
+ @objc public var time: Swift.Int
+ @objc override dynamic public init()
+ @objc public init(_ year: Swift.UInt16, _ month: Swift.UInt8, _ day: Swift.UInt8, _ time: Swift.UInt32)
+ @objc deinit
+}
+@objc public class BleRecordMarkingTag : ObjectiveC.NSObject {
+ @objc final public let timestamp: Swift.UInt32
+ @objc final public let type: Swift.UInt8
+ @objc final public let status: Swift.UInt8
+ @objc final public let reserved: [Swift.UInt8]
+ @objc public init(timestamp: Swift.UInt32, type: Swift.UInt8, status: Swift.UInt8, reserved: [Swift.UInt8])
+ @objc deinit
+}
+public func mlog(_ text: Swift.String, data: Foundation.Data? = nil, maxBytes: Swift.Int? = 80)
+public func wlog(_ text: Swift.String, data: Foundation.Data? = nil, maxBytes: Swift.Int? = 80)
+public typealias Int2Void = (Swift.Int) -> Swift.Void
+@objc public protocol BleAgentProtocol {
+ @objc func bleUpdatePowerLowErr()
+ @objc func bleDeviceDisconnectErr()
+ @objc func bleUDiskErr(funcName: Swift.String)
+ @objc func bleAppKeyState(result: Swift.Int)
+ @objc func bleState(powered: Swift.Bool)
+ @objc optional func bleConnectStage(sn: Swift.String?, stage: Swift.String, detail: Swift.String?)
+ @objc func bleConnectState(state: Swift.Int)
+ @objc func bleScanResult(bleDevices: [PlaudBleSDK.BleDevice])
+ @objc func bleScanOverTime()
+ @objc func bleHandshakeWait(timeout: Swift.Int)
+ @objc func bleBind(sn: Swift.String?, status: Swift.Int, protVersion: Swift.Int, timezone: Swift.Int)
+ @objc func bleDeviceName(name: Swift.String?)
+ @objc func bleHeartbeat(status: Swift.Int)
+ @objc func blePowerChange(power: Swift.Int, oldPower: Swift.Int)
+ @objc func bleChargingState(isCharging: Swift.Bool, level: Swift.Int)
+ @objc func blePenState(state: Swift.Int, privacy: Swift.Int, keyState: Swift.Int, uDisk: Swift.Int, findMyToken: Swift.Int, hasSndpKey: Swift.Int, deviceAccessToken: Swift.Int, versionType: Swift.String, versionCode: Swift.Int)
+ @objc func blePenTime(stamp: Swift.Int, timezone: Swift.Int, zoneMin: Swift.Int)
+ @objc func bleStorage(total: Swift.Int, free: Swift.Int, duration: Swift.Int)
+ @objc func blePasswordReset(password: Swift.Int)
+ @objc func bleBacklightDuration(_ duration: Swift.Int)
+ @objc func bleBacklightBright(_ bright: Swift.Int)
+ @objc func bleLanguage(_ type: Swift.Int)
+ @objc func bleRecScene(_ scene: Swift.Int)
+ @objc func bleRecMode(_ mode: Swift.Int)
+ @objc func bleVadSensitivity(_ value: Swift.Int)
+ @objc func bleBatteryMode(_ value: Swift.Int)
+ @objc func bleVpuGain(_ value: Swift.Int)
+ @objc func bleMicGain(_ value: Swift.Int)
+ @objc func bleSwitchHandler(_ id: Swift.Int)
+ @objc func bleAutoPowerOff(_ value: Swift.Int)
+ @objc func bleRawWaveEnabled(_ value: Swift.Int)
+ @objc func bleRecordingAfterDisConnetEnabled(_ value: Swift.Int)
+ @objc func bleSyncWhenIdleEnabled(_ value: Swift.Int)
+ @objc func bleFindMyState(_ value: Swift.Int)
+ @objc func bleVPUCLKState(_ value: Swift.Int)
+ @objc func bleStopRecordingAfterCharging(_ value: Swift.Int)
+ @objc func bleAutoClear(_ open: Swift.Bool)
+ @objc func bleVad(_ open: Swift.Bool)
+ @objc func bleDepair(_ status: Swift.Int)
+ @objc func bleWiFiOpen(_ status: Swift.Int, _ wifiName: Swift.String, _ wholeName: Swift.String, _ wifiPass: Swift.String)
+ @objc func bleWiFiClose(_ status: Swift.Int)
+ @objc func bleSetWiFiSsid(status: Swift.Int)
+ @objc func bleGetWiFiSsid(status: Swift.Int, ssid: Swift.String?)
+ @objc func bleVoiceAbnormal(status: Swift.Int)
+ @objc func bleWebsocketProfile(_ type: Swift.Int, _ conent: Swift.String?)
+ @objc func bleWebsocketTest(_ status: Swift.Int)
+ @objc func bleRecordStart(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int)
+ @objc func bleRecordStop(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int)
+ @objc func bleRecordPause(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int)
+ @objc func bleRecordResume(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int)
+ @objc func bleLedState(onOff: Swift.Int)
+ @objc func bleSetLedState(onOff: Swift.Int)
+ @objc func bleFileList(bleFiles: [PlaudBleSDK.BleFile])
+ @objc func bleSyncFileHead(sessionId: Swift.Int, status: Swift.Int)
+ @objc func bleSyncFileTail(sessionId: Swift.Int, crc: Swift.Int)
+ @objc func bleMarking(sessionId: Swift.Int, status: Swift.Int, markList: [Swift.UInt32])
+ @objc func bleGetRecordMarkingTags(uid: Swift.Int, totals: Swift.Int, index: Swift.Int, tags: [PlaudBleSDK.BleRecordMarkingTag])
+ @objc func bleAngles(pitchAngle: Swift.Float, rollbackAngle: Swift.Float, yawAngle: Swift.Float)
+ @objc func bleDataComplete()
+ @objc func bleData(sessionId: Swift.Int, start: Swift.Int, data: Foundation.Data)
+ @objc func deviceLogData(start: Swift.Int, data: Foundation.Data, logType: Swift.Int)
+ @objc func blePcmData(sessionId: Swift.Int, millsec: Swift.Int, pcmData: Foundation.Data, isMusic: Swift.Bool)
+ @objc func bleDecodeFail(start: Swift.Int)
+ @objc func bleSyncFileStop()
+ @objc func bleDeleteFile(sessionId: Swift.Int, status: Swift.Int)
+ @objc func bleFotaResult(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?)
+ @objc func bleFotaPackReq(uid: Swift.Int, start: Swift.Int, end: Swift.Int)
+ @objc func bleFotaPackFin(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?)
+ @objc func bleOtaDataSendFail()
+ @objc func bleRate(lossRate: Swift.Double, rate: Swift.Int, instantRate: Swift.Int)
+ @objc func blePrivacy(privacy: Swift.Int)
+ @objc func bleClearAllFile(status: Swift.Int)
+ @objc func bleDeviceStatus(status: [Swift.UInt8])
+ @objc func bleNewFeature(data: Foundation.Data)
+ @objc func bleAlarmRec(start: Swift.Int, duration: Swift.Int, repeatMode: Swift.Int)
+ @objc func bleSetActive(status: Swift.Int)
+ @objc func onBinaryFileReq(type: Swift.Int, packageOffset: Swift.Int, packageSize: Swift.Int, endStatus: Swift.Int)
+ @objc func onBinaryFileEnd(result: Swift.Int)
+ @objc func onSyncIdleWifiConfigReceived(index: Swift.UInt32, ssid: Swift.String, password: Swift.String)
+ @objc func onSyncIdleWifiConfigSet(result: Swift.Int)
+ @objc func onSyncIdleWifiListReceived(list: [Swift.UInt32])
+ @objc func onSyncIdleWifiDeleteResult(result: Swift.Int)
+ @objc func onSyncIdleWifiTestStarted(index: Swift.UInt32)
+ @objc func onSyncIdleWillStart(seconds: Swift.Int)
+ @objc func onSyncIdleWifiTestResult(index: Swift.UInt32, result: Swift.Int, rawCode: Swift.Int)
+ @objc func onResetFindmyResult(result: Swift.Int)
+ @objc func onCommonParamsSetResult(success: Swift.Bool, dataType: Swift.Int, value: Swift.String?)
+ @objc func onCommonParamsGetResult(success: Swift.Bool, dataType: Swift.Int, value: Swift.String?)
+ @objc func onSetSoundPlusTokenResult(licenseKey: Swift.String)
+ @objc func onGetSDFlashCIDResult(cid: Swift.String)
+ @objc func onGetDeviceLogList(data: Foundation.Data)
+ @objc func onSyncDeviceLogStart(data: Foundation.Data)
+ @objc func onSyncDeviceLogStop()
+ @objc func onSyncDeviceLogEnd(data: Foundation.Data)
+ @objc func onDeviceLogDeleted(data: Foundation.Data)
+}
+@objc public protocol OtaProtocol {
+ @objc func bleFotaResult(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?)
+ @objc func bleFotaPackReq(uid: Swift.Int, start: Swift.Int, end: Swift.Int)
+ @objc func bleFotaPackFin(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?)
+}
+@objc public protocol GlassProtocol {
+ @objc func glassData(_ delFlag: Swift.Int, _ dataArr: [PlaudBleSDK.GlassData])
+ @objc func glassDataClear(_ status: Swift.Int)
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class BleAgent : ObjectiveC.NSObject {
+ public enum ConnectStage : Swift.String {
+ case start
+ case gattConnect
+ case setNotify
+ case setBatteryNotify
+ case readBattery
+ case setDataNotify
+ case preHandshake
+ case sendRSAPublic
+ case firstHandshake
+ case twoHandshake
+ case handshakeGetSSN
+ case changeHandshakeTimeout
+ case syncTime
+ public init?(rawValue: Swift.String)
+ public typealias RawValue = Swift.String
+ public var rawValue: Swift.String {
+ get
+ }
+ }
+ public static let protocolVersionNewBatteryService: Swift.Int
+ public static let protocolVersionV20Features: Swift.Int
+ @objc public static let shared: PlaudBleSDK.BleAgent
+ public var cbManager: CoreBluetooth.CBCentralManager?
+ @objc public var bleDevice: PlaudBleSDK.BleDevice?
+ @objc weak public var delegate: (any PlaudBleSDK.BleAgentProtocol)?
+ @objc weak public var glassDelegate: (any PlaudBleSDK.GlassProtocol)?
+ weak public var otaDelegate: (any PlaudBleSDK.OtaProtocol)?
+ public var bleBlock: PlaudBleSDK.Int2Void?
+ final public let selfSignedHosts: [Swift.String]
+ @objc public var isPoweredOn: Swift.Bool {
+ get
+ }
+ @objc public var isConnected: Swift.Bool {
+ get
+ }
+ @objc public var isBinded: Swift.Bool {
+ get
+ }
+ @objc public var isOnlyOne: Swift.Bool {
+ get
+ }
+ public var userToken: Swift.String? {
+ get
+ }
+ @objc public var isRecording: Swift.Bool {
+ get
+ }
+ @objc public var needDecode: Swift.Bool {
+ get
+ }
+ @objc public var isMusic: Swift.Bool {
+ get
+ }
+ @objc public var scene: Swift.Int {
+ get
+ }
+ @objc public var settingScene: Swift.Int {
+ get
+ }
+ @objc public var sessionId: Swift.Int {
+ get
+ }
+ @objc public var isDownloading: Swift.Bool {
+ get
+ }
+ @objc public var isWiFiOpen: Swift.Bool {
+ get
+ }
+ @objc public var repeatCommondInterval: Swift.Int
+ @objc public var cmdDelegateQueue: Dispatch.DispatchQueue
+ final public let parseQueue: Dispatch.DispatchQueue
+ public var customerToken: Swift.String? {
+ get
+ }
+ @objc public var isUsbState: Swift.Bool {
+ @objc get
+ @objc set
+ }
+ @objc public var isCharging: Swift.Bool {
+ @objc get
+ @objc set
+ }
+ @objc public var flutterMapData: [Swift.String : Any]
+ @objc public var secretPackages: [Foundation.Data]
+ @objc public var secretIndex: Swift.Int
+ @objc public var secretCount: Swift.Int
+ @objc public var chacha20Key: Foundation.Data?
+ @objc public var chacha20Nonce: Foundation.Data?
+ @objc public var chacha20AD: Foundation.Data?
+ @objc public var wifiUseAes: Swift.Bool
+ @objc public var globalSendSeq: Swift.Int
+ @objc public var globalReceiveSeq: Swift.Int
+ @objc public var versionType: Swift.String
+ @objc public var versionCode: Swift.Int
+ @objc public func setWiFiState(_ connected: Swift.Bool)
+ @objc public func setUserIdentifier(_ appKey: Swift.String, _ bindToken: Swift.String, _ hkServer: Swift.Bool = false)
+ @objc public func initBluetooth()
+ @objc public func disInitBluetooth()
+ @objc public func checkAppKey(_ appKey: Swift.String)
+ @objc public func setBinding(_ token: Swift.String)
+ @objc public func setFilter(name: Swift.String?)
+ @objc public func setFilter(_ names: [Swift.String])
+ @objc public func openLog(_ opened: Swift.Bool, logBlock: ((Swift.String) -> Swift.Void)? = nil, wlogBlock: ((Swift.String) -> Swift.Void)? = nil)
+ @objc public func isDeviceConnect() -> Swift.Bool
+ @objc public func startScan()
+ @objc public func startLoopScan()
+ @objc public func stopScan()
+ @objc public func connectBleDevice(bleDevice: PlaudBleSDK.BleDevice, _ devToken: Swift.String? = nil, _ userName: Swift.String? = nil, _ isForceClear: Swift.Bool)
+ @objc public func disconnect()
+ @objc public func isSNTempChecked() -> Swift.Bool
+ @objc public func reCheckSNIfNeed()
+ @objc public func readPower()
+ @objc public func getChargingState()
+ @objc public func getState()
+ @objc public func depair(clear: Swift.Bool = false)
+ @objc public func getStorage()
+ @objc public func appResetPassword()
+ @objc public func readBacklightDuration()
+ @objc public func setBacklightDuration(type: Swift.Int)
+ public func setBacklight(duration: PlaudBleSDK.BacklightDuration)
+ @objc public func readBacklightBright()
+ @objc public func setBacklightBright(type: Swift.Int)
+ public func setBacklight(bright: PlaudBleSDK.BacklightBright)
+ @objc public func readLanguage()
+ @objc public func setLanguage(type: Swift.Int)
+ public func setLanguage(type: PlaudBleSDK.LanguageType)
+ public func openVAD(open: Swift.Bool)
+ @objc public func setRecScene(value: Swift.Int)
+ public func setRecScene(type: PlaudBleSDK.RecScene)
+ @objc public func readRecScene()
+ @objc public func setRecMode(value: Swift.Int)
+ public func setRecMode(type: PlaudBleSDK.RecMode)
+ @objc public func readRecMode()
+ @objc public func setVadSensitivity(sensitivity: Swift.Int)
+ public func setVadSensitivity(sensitivity: PlaudBleSDK.VadSensitivity)
+ @objc public func readVadSensitivity()
+ @objc public func setVpuGain(gain: Swift.Int)
+ public func setVpuGain(gain: PlaudBleSDK.VpuGain)
+ @objc public func readVpuGain()
+ @objc public func setMicGain(value: Swift.Int)
+ @objc public func readBatteryMode()
+ @objc public func setBatteryMode(value: Swift.Int)
+ @objc public func readMicGain()
+ @objc public func setSwitchHandler(id: Swift.Int)
+ @objc public func readSwitchHandler()
+ @objc public func setAutoPowerOff(value: Swift.Int)
+ @objc public func readAutoPowerOff()
+ @objc public func setRawWaveEnabled(value: Swift.Int)
+ @objc public func readRawWaveEnabled()
+ @objc public func readRecordingAfterDisConnetEnabled()
+ @objc public func setRecordingAfterDisConnetEnabled(value: Swift.Int)
+ @objc public func readSyncWhenIdleEnabled()
+ @objc public func setSyncWhenIdleEnabled(value: Swift.Int)
+ @objc public func setFindMyState(value: Swift.Int)
+ @objc public func readFindMyState()
+ @objc public func setVPUCLK(value: Swift.Int)
+ @objc public func readVPUCLK()
+ @objc public func setStopRecordingAfterCharging(value: Swift.Int)
+ @objc public func readStopRecordingAfterCharging()
+ @objc public func setBleName(name: Swift.String)
+ @objc public func getDeviceLogList(logType: Swift.Int)
+ @objc public func startSyncDeviceLogFile(logType: Swift.Int)
+ @objc public func stopSyncDeviceLogFile()
+ @objc public func deleteDeviceLogFile(logType: Swift.Int)
+ @objc public func readBleName()
+ @objc public func operateWiFi(open: Swift.Bool, isOTA: Swift.Bool)
+ @objc public func readGlassData(uid: Swift.Int)
+ @objc public func clearGlassData()
+ @objc public func readAutoClear()
+ @objc public func saveAutoClear(_ open: Swift.Bool)
+ @objc public func startRecord(_ scene: Swift.Int = 0)
+ @objc public func stopRecord()
+ @objc public func pauseRecord(_ sessionId: Swift.Int)
+ @objc public func resumeRecord(_ sessionId: Swift.Int)
+ @objc public func getLedState()
+ @objc public func setLedState(onOff: Swift.Int)
+ @objc public func getFileList(uid: Swift.Int, sessionId: Swift.Int, onlyOne: Swift.Bool = false)
+ @objc public func syncFile(sessionId: Swift.Int, start: Swift.Int, end: Swift.Int, decode: Swift.Bool)
+ @objc public func stopSyncFile()
+ @objc public func deleteFile(sessionId: Swift.Int)
+ @objc public func getMarking(_ sessionId: Swift.Int)
+ @objc public func getRecordMarkingTags(uid: Swift.Int, startTimestamp: Swift.Int, endTimestamp: Swift.Int)
+ @objc public func pushFotaInfo(_ uid: Swift.Int, _ fromVersion: Swift.String, _ toVersion: Swift.String, _ thirdVersion: Swift.Int = 0, _ fileSize: Swift.Int, _ crc: Swift.Int)
+ public func pushFotaInfo(_ uid: Swift.Int, _ fromVersion: Swift.Int, _ fromVersionType: Swift.Character, _ toVersion: Swift.Int, _ toVersionType: Swift.Character, _ thirdVersion: Swift.Int = 0, _ fileSize: Swift.Int, _ crc: Swift.Int)
+ @objc public func pushFotaInfo(_ uid: Swift.Int, _ fromVersion: Swift.Int, _ fromVersionType: Swift.String, _ toVersion: Swift.Int, _ toVersionType: Swift.String, _ thirdVersion: Swift.Int = 0, _ fileSize: Swift.Int, _ crc: Swift.Int)
+ @objc public func pushFotaComplete(_ uid: Swift.Int, _ status: Swift.Int)
+ @objc public func pushFotaPack(_ offset: Swift.Int, packData: Foundation.Data, postDelayUs: Foundation.NSNumber?)
+ @available(iOS 11.0, *)
+ @objc public func canSendWithoutResponse() -> Swift.Bool
+ public func startBleRateTest(_ packSize: Swift.Int = 80)
+ public func stopBleRateTest()
+ @objc public func restoreFactory()
+ @objc public func setPrivacy(onOff: Swift.Int)
+ @objc public func clearAllFile()
+ @objc public func setDeviceActive(status: Swift.Int)
+ @objc public func setHeartBeat(status: Swift.Int)
+ @objc public func setWiFiSsid(ssid: Swift.String, password: Swift.String, isTest: Swift.Bool = false)
+ @objc public func getWiFiSsid()
+ @objc public func getUpdateInfo(_ callback: @escaping (Swift.Int, PlaudBleSDK.UpdateInfo?) -> Swift.Void)
+ @objc public func setWebsocketProfile(type: Swift.Int, content: Swift.String)
+ public func setWebsocketProfile(type: PlaudBleSDK.WebsocketType, content: Swift.String)
+ @objc public func getWebsocketProfile(type: Swift.Int)
+ public func getWebsocketProfile(type: PlaudBleSDK.WebsocketType)
+ @objc public func testWebsocket()
+ @objc public func setAlarmRec(start: Swift.Int, duration: Swift.Int, repeatMode: Swift.Int)
+ @objc public func getAlarmRec()
+ @objc public func sendBinFileInfo(type: Swift.Int, totalSize: Swift.Int)
+ @objc public func sendBinFileData(type: Swift.Int, packageOffset: Swift.Int, packageSize: Swift.Int, data: Foundation.Data)
+ @objc public func sendBinFileCheckSumResult(type: Swift.Int, crc: Swift.Int)
+ @objc public func getSyncInIdleWifiConfig(wifiIndex: Swift.UInt32)
+ @objc public func setSyncInIdleWifiConfig(operation: Swift.Int, wifiIndex: Swift.UInt32, ssid: Swift.String, password: Swift.String)
+ @objc public func deleteSyncInIdleWifiConfig(wifiIndices: [Swift.UInt32])
+ @objc public func resetFindmy()
+ @objc public func getSyncInIdleWifiList()
+ @objc public func setSyncInIdleWifiTest(wifiIndex: Swift.UInt32)
+ @objc public func getSyncInIdleWifiTestResult(wifiIndex: Swift.UInt32)
+ @objc public func setSoundPlusToken(licenseKey: Swift.String)
+ @objc public func setCommonParams(dataType: Swift.Int, value: Swift.String)
+ @objc public func getCommonParams(dataType: Swift.Int)
+ @objc public func getSDFLASHCID()
+ @objc public func getNewFeature(_ data: Foundation.Data)
+ @objc public func getDeviceStatus()
+ @objc deinit
+}
+extension PlaudBleSDK.BleAgent : CoreBluetooth.CBCentralManagerDelegate {
+ @objc dynamic public func centralManagerDidUpdateState(_ central: CoreBluetooth.CBCentralManager)
+ @objc dynamic public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDiscover peripheral: CoreBluetooth.CBPeripheral, advertisementData: [Swift.String : Any], rssi RSSI: Foundation.NSNumber)
+ @objc dynamic public func centralManager(_ central: CoreBluetooth.CBCentralManager, didConnect peripheral: CoreBluetooth.CBPeripheral)
+ @objc dynamic public func centralManager(_ central: CoreBluetooth.CBCentralManager, didFailToConnect peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?)
+ @objc dynamic public func centralManager(_ central: CoreBluetooth.CBCentralManager, didDisconnectPeripheral peripheral: CoreBluetooth.CBPeripheral, error: (any Swift.Error)?)
+}
+extension PlaudBleSDK.BleAgent {
+ @objc dynamic public func isAuthOk() -> Swift.Bool
+ @objc dynamic public func toSingleChannel(_ pcmData: Foundation.Data) -> Foundation.Data
+}
+extension PlaudBleSDK.BleAgent : PlaudBleSDK.JXPcmProcessDelegate {
+ @objc dynamic public func onPcmData(_ sessionId: Swift.Int, _ millSec: Swift.Int, _ pcmData: Foundation.Data)
+ @objc dynamic public func onDecodeErr(_ millSec: Swift.Int)
+}
+extension Foundation.Data {
+ public var hexDescription: Swift.String {
+ get
+ }
+}
+extension Foundation.Date {
+ public var stampMillisec: Swift.Int {
+ get
+ }
+ public var stampSec: Swift.Int {
+ get
+ }
+ public var logTime: Swift.String {
+ get
+ }
+}
+extension Foundation.TimeZone {
+ public var numValue: Swift.Int {
+ get
+ }
+ public func getHourAndMin() -> (Swift.Int, Swift.Int)
+}
+public enum CustomerAuth {
+ case temp
+ case notRestricted
+ case restricted
+ public static func == (a: PlaudBleSDK.CustomerAuth, b: PlaudBleSDK.CustomerAuth) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+public enum SSNAuth {
+ case temp
+ case notRestricted
+ case restricted
+ public static func == (a: PlaudBleSDK.SSNAuth, b: PlaudBleSDK.SSNAuth) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
+}
+extension PlaudBleSDK.BleAgent : Foundation.URLSessionDelegate {
+ @objc dynamic public func urlSession(_ session: Foundation.URLSession, didReceive challenge: Foundation.URLAuthenticationChallenge, completionHandler: @escaping (Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?) -> Swift.Void)
+ public func selfSignedTrust(session: Foundation.URLSession, challenge: Foundation.URLAuthenticationChallenge) -> (Foundation.URLSession.AuthChallengeDisposition, Foundation.URLCredential?)
+}
+extension Swift.String {
+ public var md5Hex: Swift.String {
+ get
+ }
+ public var dictionary: [Swift.String : Any] {
+ get
+ }
+ public var isNotEmpty: Swift.Bool {
+ get
+ }
+}
+extension Foundation.Data {
+ public var dictionary: [Swift.String : Any] {
+ get
+ }
+}
+#if compiler(>=5.3) && $NoncopyableGenerics
+extension Swift.Optional {
+ public var exist: Swift.Bool {
+ get
+ }
+ public var stringValue: Swift.String {
+ get
+ }
+ public var intValue: Swift.Int {
+ get
+ }
+ public var doubleValue: Swift.Double {
+ get
+ }
+ public var boolValue: Swift.Bool {
+ get
+ }
+ public var arrayValue: [[Swift.String : Any]] {
+ get
+ }
+ public var jsonObj: [Swift.String : Any]? {
+ get
+ }
+ public var jsonValue: [Swift.String : Any] {
+ get
+ }
+}
+#else
+extension Swift.Optional {
+ public var exist: Swift.Bool {
+ get
+ }
+ public var stringValue: Swift.String {
+ get
+ }
+ public var intValue: Swift.Int {
+ get
+ }
+ public var doubleValue: Swift.Double {
+ get
+ }
+ public var boolValue: Swift.Bool {
+ get
+ }
+ public var arrayValue: [[Swift.String : Any]] {
+ get
+ }
+ public var jsonObj: [Swift.String : Any]? {
+ get
+ }
+ public var jsonValue: [Swift.String : Any] {
+ get
+ }
+}
+#endif
+@objc open class BleDevice : ObjectiveC.NSObject {
+ public var peripheral: CoreBluetooth.CBPeripheral!
+ @objc public var name: Swift.String
+ @objc public var uuid: Swift.String
+ @objc public var rssi: Swift.Float
+ @objc public var manufacturer: Swift.String
+ @objc public var projectCode: Swift.Int
+ public var versionType: Swift.Character
+ @objc public var versionTypeStr: Swift.String
+ @objc public var versionCode: Swift.Int
+ @objc public var serialNumber: Swift.String
+ @objc public var bindCode: Swift.Int
+ @objc public var power: Swift.Int
+ @objc public var isCharging: Swift.Bool
+ @objc public var total: Swift.Int
+ @objc public var free: Swift.Int
+ @objc public var duration: Swift.Int
+ @objc public var timezone: Swift.Int
+ @objc public var zoneMin: Swift.Int
+ @objc public var channels: Swift.Int
+ @objc public var supportWiFi: Swift.Bool
+ @objc public var nsAgc: Swift.Bool
+ @objc public var isOgg: Swift.Bool
+ @objc public var autoClear: Swift.Int
+ @objc public var hideLed: Swift.Int
+ @objc public var state: Swift.Int
+ @objc public var privacy: Swift.Int
+ @objc public var keyState: Swift.Int
+ @objc public var uDisk: Swift.Int
+ @objc public var findmyToken: Swift.Int
+ @objc public var hasFota: Swift.Bool
+ public var ssn: Swift.String
+ public var protVersion: Swift.Int
+ public var isVadOpen: Swift.Bool
+ @objc public var wholeName: Swift.String {
+ @objc get
+ }
+ @objc public var wifiName: Swift.String {
+ @objc get
+ }
+ @objc public init(sn: Swift.String)
+ public init(peripheral: CoreBluetooth.CBPeripheral, rssi: Foundation.NSNumber, manufacturerData: Foundation.Data, localName: Swift.String?)
+ @objc public func wholeVersion() -> Swift.String
+ @objc public func toString() -> Swift.String
+ @objc public func zoneSecond() -> Swift.Int
+ @objc deinit
+}
+extension PlaudBleSDK.BleDevice : CoreBluetooth.CBPeripheralDelegate {
+ @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverServices error: (any Swift.Error)?)
+ @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didDiscoverCharacteristicsFor service: CoreBluetooth.CBService, error: (any Swift.Error)?)
+ @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateNotificationStateFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?)
+ @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didUpdateValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?)
+ @objc dynamic public func peripheral(_ peripheral: CoreBluetooth.CBPeripheral, didWriteValueFor characteristic: CoreBluetooth.CBCharacteristic, error: (any Swift.Error)?)
+}
+public enum CommonType : Swift.Int {
+ case LightDuration
+ case LightBright
+ case Language
+ case AutoClear
+ case VAD
+ case RecScene
+ case RecMode
+ case VadSensitivity
+ case VpuGain
+ case BatteryMode
+ case MicGain
+ case WiFiChannel
+ case SwitchHandle
+ case AutoPowerOff
+ case RawWaveEnabled
+ case RecordingAfterDisConnet
+ case SyncWhenIdle
+ case FindMyState
+ case VPUCLK
+ case StopRecordAfterCharging
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum CommonAction : Swift.Int {
+ case Read
+ case Set
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum BacklightBright : Swift.Int {
+ case Bright1
+ case Bright2, Bright3, Bright4, Bright5, Bright6
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum BacklightDuration : Swift.Int {
+ case Sec10
+ case Sec20, Sec30, SecAlways
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum LanguageType : Swift.Int {
+ case SimpleChinese
+ case TradChinese
+ case English
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum RecScene : Swift.Int {
+ case Unknown
+ case Normal
+ case Interview
+ case Classroom
+ case Music
+ case Meeting
+ case Memo
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum RecMode : Swift.Int {
+ case Normal
+ case NC
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum VadSensitivity : Swift.Int {
+ case Quality
+ case lowBitrate
+ case Normal
+ case Aggressive
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum VpuGain : Swift.Int {
+ case Low
+ case Medium
+ case High
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum SwitchHandlerID : Swift.Int {
+ case CallSceneSwitching
+ case Recording
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+public enum WebsocketType : Swift.UInt8 {
+ case url
+ case serToken
+ case devToken
+ public init?(rawValue: Swift.UInt8)
+ public typealias RawValue = Swift.UInt8
+ public var rawValue: Swift.UInt8 {
+ get
+ }
+}
+public enum AutoClear : Swift.Int {
+ case Close
+ case Open
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+}
+extension PlaudBleSDK.BleAgent {
+ public func dataOfGetRecordMarkingTags(uid: Swift.Int, startTimestamp: Swift.Int, endTimestamp: Swift.Int) -> Foundation.Data
+}
+extension Foundation.Data {
+ public func subData(begin: Swift.Int, count: Swift.Int) -> Foundation.Data
+ public func safeSubdata(in range: Swift.Range) -> Foundation.Data?
+ public func safeSubdata(offset: Swift.Int, count: Swift.Int) -> Foundation.Data?
+ public var floatValue: Swift.Float {
+ get
+ }
+ public var int8: Swift.Int8 {
+ get
+ }
+ public var uint8: Swift.UInt8 {
+ get
+ }
+ public var uint16: Swift.UInt16 {
+ get
+ }
+ public var uint24: Swift.UInt32 {
+ get
+ }
+ public var uint32: Swift.UInt32 {
+ get
+ }
+ public var uint64: Swift.UInt64 {
+ get
+ }
+ public func int8(at offset: Swift.Int) -> Swift.Int
+ public func uint8(at offset: Swift.Int) -> Swift.UInt8
+ public func int16(at offset: Swift.Int) -> Swift.Int16
+ public func uint16(at offset: Swift.Int) -> Swift.UInt16
+ public func uint24(at offset: Swift.Int) -> Swift.UInt32
+ public func int32(at offset: Swift.Int) -> Swift.Int32
+ public func uint32(at offset: Swift.Int) -> Swift.UInt32
+ public func int64(at offset: Swift.Int) -> Swift.Int64
+ public func uint64(at offset: Swift.Int) -> Swift.UInt64
+ public func float(at offset: Swift.Int) -> Swift.Float
+}
+extension Swift.Int8 {
+ public var data: Foundation.Data {
+ get
+ }
+}
+extension Swift.UInt8 {
+ public var data: Foundation.Data {
+ get
+ }
+}
+extension Swift.UInt16 {
+ public var data: Foundation.Data {
+ get
+ }
+}
+extension Swift.Int16 {
+ public var data: Foundation.Data {
+ get
+ }
+}
+extension Swift.UInt32 {
+ public var data: Foundation.Data {
+ get
+ }
+ public var data24: Foundation.Data {
+ get
+ }
+ public var byteArrayLittleEndian: [Swift.UInt8] {
+ get
+ }
+}
+extension Swift.UInt64 {
+ public var data: Foundation.Data {
+ get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class JXFileSoundWave : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.JXFileSoundWave
+ @objc public func hasAvcToSoundWaveTask() -> Swift.Bool
+ @objc public func generateSoundWaveCancel()
+ @objc public func createSoundWave(_ filePath: Swift.String, _ channels: Swift.Int, _ isOgg: Swift.Bool, _ isMusic: Swift.Bool, _ callback: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+ @objc public func avcToSoundWave(avcPath: Swift.String, channels: Swift.Int = 1, completionHandler: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class JXRecordVolumer : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.JXRecordVolumer
+ @objc public var waveInterval: Swift.Int
+ @objc public var volumeArr: [[Swift.Int]]
+ public var volumeMeters: [(sec: Swift.Int, volume: Swift.Int)]
+ @objc public var curSec: Swift.Int {
+ get
+ }
+ @objc public func averageVolume(_ pcmData: Foundation.Data) -> Swift.Int
+ @objc public func append(start: Swift.Int, pcmData: Foundation.Data)
+ public func middleNum(_ volumeArr: inout [Swift.Int]) -> Swift.Int
+ @objc public func reset()
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class JXRecordingVolumer : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.JXRecordingVolumer
+ @objc weak public var delegate: (any PlaudBleSDK.VolumeProtocol)?
+ @objc public var waveInterval: Swift.Int
+ @objc public var volumeArr: [[Swift.Int]] {
+ get
+ }
+ public var volumeMeters: [(sec: Swift.Int, volume: Swift.Int)] {
+ get
+ }
+ @objc public var curSec: Swift.Int {
+ get
+ }
+ @objc public var curMillisec: Swift.Int {
+ get
+ }
+ @objc public var curFileSize: Swift.Int {
+ get
+ }
+ @objc public func averageVolume(_ pcmData: Foundation.Data) -> CoreFoundation.CGFloat
+ @objc public func append(start: Swift.Int, pcmData: Foundation.Data, channels: Swift.Int = 1)
+ @objc public func append(_ millSec: Swift.Int, _ pcmData: Foundation.Data)
+ @objc public func setOldVolumeMeters(meters: [[Swift.Int]])
+ public func setOldVolumeMeters(meters: [(sec: Swift.Int, volume: Swift.Int)])
+ @objc public func reset()
+ @objc deinit
+}
+@objc public protocol VolumeProtocol {
+ @objc func onDuration(millisec: Swift.Int)
+ @objc func onVolume(sec: Swift.Int, volume: Swift.Int)
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class JXWaveHelper : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.JXWaveHelper
+ @objc public static let tmpPcmPath: Swift.String
+ @objc public static let tmpWavPath: Swift.String
+ @objc public static let leftPath: Swift.String
+ @objc public static let rightPath: Swift.String
+ @objc public static let leftWavPath: Swift.String
+ @objc public static let rightWavPath: Swift.String
+ @objc public static let leftLycPath: Swift.String
+ @objc public static let rightLycPath: Swift.String
+ @objc public func pcmFileToWave(pcmFilePath: Swift.String = JXWaveHelper.tmpPcmPath, wavFilePath: Swift.String = JXWaveHelper.tmpWavPath, channels: Swift.UInt32 = 1, simpleRate: Swift.UInt32 = 16000) -> Swift.Bool
+ public func readWaveHeader(wavePath: Swift.String) -> (fileSize: Swift.Int, channel: Swift.Int, sampleRate: Swift.Int, bitRate: Swift.Int, sampleBit: Swift.Int, dataSize: Swift.Int)
+ @objc public func divideLeftAndRight(_ wavePath: Swift.String, _ leftPath: Swift.String = JXWaveHelper.leftPath, _ rightPath: Swift.String = JXWaveHelper.rightPath, handler: @escaping (Swift.Bool) -> Swift.Void)
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class JXCrcHelper : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.JXCrcHelper
+ @objc public func getCrc(path: Swift.String) -> Swift.Int
+ @objc public func checkCrc(crc: Swift.Int, ofFile path: Swift.String) -> Swift.Bool
+ @objc deinit
+}
+extension Foundation.FileManager {
+ public func fileSize(path: Swift.String) -> Swift.Int
+}
+@_hasMissingDesignatedInitializers open class NetworkReachabilityManager {
+ public enum NetworkReachabilityStatus {
+ case unknown
+ case notReachable
+ case reachable(PlaudBleSDK.NetworkReachabilityManager.ConnectionType)
+ }
+ public enum ConnectionType {
+ case ethernetOrWiFi
+ case wwan
+ public static func == (a: PlaudBleSDK.NetworkReachabilityManager.ConnectionType, b: PlaudBleSDK.NetworkReachabilityManager.ConnectionType) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
+ }
+ public typealias Listener = (PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> Swift.Void
+ open var isReachable: Swift.Bool {
+ get
+ }
+ open var isReachableOnWWAN: Swift.Bool {
+ get
+ }
+ open var isReachableOnEthernetOrWiFi: Swift.Bool {
+ get
+ }
+ open var networkReachabilityStatus: PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus {
+ get
+ }
+ open var listenerQueue: Dispatch.DispatchQueue
+ open var listener: PlaudBleSDK.NetworkReachabilityManager.Listener?
+ open var flags: SystemConfiguration.SCNetworkReachabilityFlags? {
+ get
+ }
+ open var previousFlags: SystemConfiguration.SCNetworkReachabilityFlags
+ convenience public init?(host: Swift.String)
+ convenience public init?()
+ @objc deinit
+ @discardableResult
+ open func startListening() -> Swift.Bool
+ open func stopListening()
+}
+extension PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus : Swift.Equatable {
+}
+public func == (lhs: PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus, rhs: PlaudBleSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> Swift.Bool
+@_inheritsConvenienceInitializers @objc(JXAvcDecoder) public class JXAvcDecoder : ObjectiveC.NSObject {
+ @objc final public let packSize: Swift.Int
+ @objc final public let twoChannelPackSize: Swift.Int
+ @objc final public let fourChannelPackSize: Swift.Int
+ @objc override dynamic public init()
+ @objc public func createDecoderIfNeed(_ channels: Swift.Int = 1)
+ @objc public func decode(_ data: Foundation.Data, _ channels: Swift.Int) -> Foundation.Data?
+ @objc public func releaseDecoder()
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class JXFileDecoder : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.JXFileDecoder
+ @objc public func pcmToWav(pcmPath: Swift.String, wavPath: Swift.String, channels: Swift.UInt32 = 1, simpleRate: Swift.UInt32 = 16000, completionHandler: @escaping (Swift.Bool) -> Swift.Void)
+ @objc public func resetWavHead(_ wavPath: Swift.String, _ channels: Swift.UInt32, _ sampleRate: Swift.UInt32 = 16000)
+ @objc deinit
+}
+extension PlaudBleSDK.JXFileDecoder {
+ @objc dynamic public func hasOggMulToSingleTask() -> Swift.Bool
+ @objc dynamic public func oggMulToSingleCancel()
+ @objc dynamic public func oggMulToSingle(_ mulPath: Swift.String, _ singlePath: Swift.String, _ channels: Swift.Int32, _ callback: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+}
+extension PlaudBleSDK.JXFileDecoder {
+ @objc dynamic public func hasAvcToOggTask() -> Swift.Bool
+ @objc dynamic public func convertAvcToOggCancel()
+ @objc dynamic public func oggToOpus(_ oggPath: Swift.String, _ opusPath: Swift.String, _ channels: Swift.Int32, _ callback: @escaping (Swift.Bool) -> Swift.Void)
+ @objc dynamic public func avcToOgg(_ avcPath: Swift.String, _ oggPath: Swift.String, clearUnfinished: Swift.Bool = true, _ iflyToolongCut: Swift.Bool = true, _ channels: Swift.Int32 = 1, _ targetChannels: Swift.Int32 = 1, _ ns_agc: Swift.Bool = false, _ callback: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+}
+extension PlaudBleSDK.JXFileDecoder {
+ @objc dynamic public func hasOggToMp3Task() -> Swift.Bool
+ @objc dynamic public func convertOggToMp3Cancel()
+ @objc dynamic public func oggToMp3(_ oggPath: Swift.String, _ mp3Path: Swift.String, _ channels: Swift.Int32, _ quality: Swift.Int32 = 4, _ callback: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+}
+extension PlaudBleSDK.JXFileDecoder {
+ @objc dynamic public func hasAvcToMp3Task() -> Swift.Bool
+ @objc dynamic public func convertAvcToMp3Cancel()
+ @objc dynamic public func avcToMp3(avcPath: Swift.String, mp3Path: Swift.String, clearUnfinished: Swift.Bool = true, quality: Swift.Int32 = 4, channels: Swift.Int32 = 1, ns_agc: Swift.Bool = false, completionHandler: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+}
+extension PlaudBleSDK.JXFileDecoder {
+ @objc dynamic public func hasPcmToMp3Task() -> Swift.Bool
+ @objc dynamic public func convertPcmToMp3Cancel()
+ @objc dynamic public func pcmToMp3(pcmPath: Swift.String, mp3Path: Swift.String, clearUnfinished: Swift.Bool = true, quality: Swift.Int32 = 4, channels: Swift.Int32 = 1, completionHandler: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+}
+extension PlaudBleSDK.JXFileDecoder {
+ @objc dynamic public func hasAvcToPcmTask() -> Swift.Bool
+ @objc dynamic public func convertAvcToPcmCancel()
+ @objc dynamic public func avcToPcm(avcPath: Swift.String, pcmPath: Swift.String, clearUnfinished: Swift.Bool = true, channels: Swift.Int32 = 1, ns_agc: Swift.Bool = false, completionHandler: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+ @objc dynamic public func oggToPcm(avcPath: Swift.String, pcmPath: Swift.String, clearUnfinished: Swift.Bool = true, channels: Swift.Int32 = 1, ns_agc: Swift.Bool = false, completionHandler: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+}
+extension PlaudBleSDK.JXFileDecoder {
+ @objc dynamic public func hasAvcToWavTask() -> Swift.Bool
+ @objc dynamic public func convertAvcToWavCancel()
+ @objc dynamic public func avcToWav(avcPath: Swift.String, wavPath: Swift.String, channels: Swift.Int32 = 1, ns_agc: Swift.Bool = false, clearUnfinished: Swift.Bool = true, completionHandler: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+}
+extension PlaudBleSDK.JXFileDecoder {
+ @objc dynamic public func hasAvcToNoiseReductionWav() -> Swift.Bool
+ @objc dynamic public func convertAvcToNoiseReductionWavCancel()
+ @objc dynamic public func avcToNoiseReductionWav(avcPath: Swift.String, wavPath: Swift.String, channels: Swift.Int32 = 1, sound_plus: Swift.Bool = false, noiseReductionGain: Swift.Int = 6, clearUnfinished: Swift.Bool = true, completionHandler: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+}
+@objc public protocol JXPcmProcessDelegate {
+ @objc func onPcmData(_ sessionId: Swift.Int, _ millSec: Swift.Int, _ pcmData: Foundation.Data)
+ @objc func onDecodeErr(_ millSec: Swift.Int)
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class JXPcmProcess : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.JXPcmProcess
+ @objc weak public var delegate: (any PlaudBleSDK.JXPcmProcessDelegate)?
+ @objc public var callbackQueue: Dispatch.DispatchQueue
+ @objc public func resetWith(_ sessionId: Swift.Int, _ channel: Swift.Int, _ isOgg: Swift.Bool, _ nsAgc: Swift.Bool = false)
+ @objc public func receiveData(_ sessionId: Swift.Int, _ start: Swift.Int, _ data: Foundation.Data)
+ @objc public func receiveDataBytes(_ sessionId: Swift.Int, _ start: Swift.Int, _ data: Foundation.Data)
+ @objc deinit
+}
+extension PlaudBleSDK.JXPcmProcess : PlaudBleSDK.JXPcmProcessDelegate {
+ @objc dynamic public func onPcmData(_ sessionId: Swift.Int, _ millSec: Swift.Int, _ pcmData: Foundation.Data)
+ @objc dynamic public func onDecodeErr(_ millSec: Swift.Int)
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class JXWave2PcmProcess : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.JXWave2PcmProcess
+ @objc weak public var delegate: (any PlaudBleSDK.JXPcmProcessDelegate)?
+ @objc public var callbackQueue: Dispatch.DispatchQueue
+ @objc public func resetWith(_ sessionId: Swift.Int)
+ @objc public func receiveData(_ sessionId: Swift.Int, _ start: Swift.Int, _ data: Foundation.Data)
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PDFileSoundWave : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.PDFileSoundWave
+ @objc public func hasAvcToSoundWaveTask() -> Swift.Bool
+ @objc public func generateSoundWaveCancel()
+ @objc public func createSoundWave(_ filePath: Swift.String, _ channels: Swift.Int, _ isOgg: Swift.Bool, _ isMusic: Swift.Bool, _ callback: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+ @objc public func avcToSoundWave(avcPath: Swift.String, channels: Swift.Int = 1, completionHandler: @escaping (Swift.Bool, Swift.Int) -> Swift.Void)
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PDRecordVolumer : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.PDRecordVolumer
+ @objc public var waveInterval: Swift.Int
+ @objc public var volumeArr: [[Swift.Int]]
+ public var volumeMeters: [(sec: Swift.Int, volume: Swift.Int)]
+ @objc public var curSec: Swift.Int {
+ get
+ }
+ @objc public func averageVolume(_ pcmData: Foundation.Data) -> Swift.Int
+ @objc public func append(start: Swift.Int, pcmData: Foundation.Data)
+ public func middleNum(_ volumeArr: inout [Swift.Int]) -> Swift.Int
+ @objc public func reset()
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PDRecordingVolumer : ObjectiveC.NSObject {
+ @objc public static let shared: PlaudBleSDK.PDRecordingVolumer
+ @objc weak public var delegate: (any PlaudBleSDK.PDVolumeProtocol)?
+ @objc public var waveInterval: Swift.Int
+ @objc public var volumeArr: [[Swift.Int]] {
+ get
+ }
+ public var volumeMeters: [(sec: Swift.Int, volume: Swift.Int)] {
+ get
+ }
+ public var volumePerTwentyMsecs: [(perTwentyMsec: Swift.Int, volume: Swift.Int)] {
+ get
+ }
+ @objc public var curSec: Swift.Int {
+ get
+ }
+ @objc public var curMillisec: Swift.Int {
+ get
+ }
+ @objc public var curFileSize: Swift.Int {
+ get
+ }
+ @objc public func averageVolume(_ pcmData: Foundation.Data) -> CoreFoundation.CGFloat
+ @objc public func append(start: Swift.Int, pcmData: Foundation.Data, channels: Swift.Int = 1)
+ @objc public func append(_ millSec: Swift.Int, _ pcmData: Foundation.Data)
+ @objc public func setOldVolumeMeters(meters: [[Swift.Int]])
+ public func setOldVolumeMeters(meters: [(sec: Swift.Int, volume: Swift.Int)])
+ @objc public func reset()
+ @objc deinit
+}
+@objc public protocol PDVolumeProtocol {
+ @objc func onDuration(millisec: Swift.Int)
+ @objc func onVolume(sec: Swift.Int, volume: Swift.Int)
+ @objc func onVolumePerTwentyMsec(mescSecond: Swift.Int, volume: Swift.Int)
+}
+@_hasMissingDesignatedInitializers public class SecretUtil {
+ public static func decryptWithPrivateKey(_ encryptedData: Foundation.Data, privateKeyPem: Swift.String) throws -> Foundation.Data
+ public static func encryptWithChaChaPoly1305Separate(_ data: Foundation.Data, key: Foundation.Data, nonce: Foundation.Data, ad: Foundation.Data? = nil) throws -> (ciphertext: Foundation.Data, tag: Foundation.Data)
+ public static func decryptWithChaChaPoly1305Separate(_ ciphertext: Foundation.Data, tag: Foundation.Data, key: Foundation.Data, nonce: Foundation.Data, ad: Foundation.Data? = nil) throws -> Foundation.Data
+ public static func encryptWithAES256Separate(_ data: Foundation.Data, key: Foundation.Data, nonce: Foundation.Data, ad: Foundation.Data? = nil) throws -> (ciphertext: Foundation.Data, tag: Foundation.Data)
+ public static func decryptWithAES256Separate(_ ciphertext: Foundation.Data, tag: Foundation.Data, key: Foundation.Data, nonce: Foundation.Data, ad: Foundation.Data? = nil) throws -> Foundation.Data
+ public static func decryptWithFallback(ciphertext: Foundation.Data, tag: Foundation.Data, key: Foundation.Data, nonce: Foundation.Data, ad: Foundation.Data? = nil, preferAes: Swift.Bool) throws -> Foundation.Data
+ public static func decryptWithChaCha20Stream(_ ciphertext: Foundation.Data, key: Foundation.Data, nonce: Foundation.Data, counter: Swift.UInt32 = 0) throws -> Foundation.Data
+ @objc deinit
+}
+public class Signature {
+ public enum DigestType {
+ case sha1
+ case sha224
+ case sha256
+ case sha384
+ case sha512
+ public static func == (a: PlaudBleSDK.Signature.DigestType, b: PlaudBleSDK.Signature.DigestType) -> Swift.Bool
+ public func hash(into hasher: inout Swift.Hasher)
+ public var hashValue: Swift.Int {
+ get
+ }
+ }
+ final public let data: Foundation.Data
+ public init(data: Foundation.Data)
+ convenience public init(base64Encoded base64String: Swift.String) throws
+ public var base64String: Swift.String {
+ get
+ }
+ @objc deinit
+}
+public class PublicKey : PlaudBleSDK.Key {
+ final public let reference: Security.SecKey
+ final public let originalData: Foundation.Data?
+ public func pemString() throws -> Swift.String
+ required public init(reference: Security.SecKey) throws
+ required public init(data: Foundation.Data) throws
+ public static func publicKeys(pemEncoded pemString: Swift.String) -> [PlaudBleSDK.PublicKey]
+ @objc deinit
+}
+extension Foundation.Data {
+ public func prependx509Header() -> Foundation.Data
+ public func hasX509Header() throws -> Swift.Bool
+ public func isAnHeaderlessKey() throws -> Swift.Bool
+}
+public class PrivateKey : PlaudBleSDK.Key {
+ final public let reference: Security.SecKey
+ final public let originalData: Foundation.Data?
+ public func pemString() throws -> Swift.String
+ required public init(reference: Security.SecKey) throws
+ required public init(data: Foundation.Data) throws
+ @objc deinit
+}
+public protocol Message {
+ var data: Foundation.Data { get }
+ var base64String: Swift.String { get }
+ init(data: Foundation.Data)
+ init(base64Encoded base64String: Swift.String) throws
+}
+extension PlaudBleSDK.Message {
+ public var base64String: Swift.String {
+ get
+ }
+ public init(base64Encoded base64String: Swift.String) throws
+}
+public enum SwiftyRSAError : Swift.Error {
+ case pemDoesNotContainKey
+ case keyRepresentationFailed(error: CoreFoundation.CFError?)
+ case keyGenerationFailed(error: CoreFoundation.CFError?)
+ case keyCreateFailed(error: CoreFoundation.CFError?)
+ case keyAddFailed(status: Darwin.OSStatus)
+ case keyCopyFailed(status: Darwin.OSStatus)
+ case tagEncodingFailed
+ case asn1ParsingFailed
+ case invalidAsn1RootNode
+ case invalidAsn1Structure
+ case invalidBase64String
+ case chunkDecryptFailed(index: Swift.Int)
+ case chunkEncryptFailed(index: Swift.Int)
+ case stringToDataConversionFailed
+ case dataToStringConversionFailed
+ case invalidDigestSize(digestSize: Swift.Int, maxChunkSize: Swift.Int)
+ case signatureCreateFailed(status: Darwin.OSStatus)
+ case signatureVerifyFailed(status: Darwin.OSStatus)
+ case pemFileNotFound(name: Swift.String)
+ case derFileNotFound(name: Swift.String)
+ case notAPublicKey
+ case notAPrivateKey
+ case x509CertificateFailed
+}
+public class EncryptedMessage : PlaudBleSDK.Message {
+ final public let data: Foundation.Data
+ required public init(data: Foundation.Data)
+ public func decrypted(with key: PlaudBleSDK.PrivateKey, padding: PlaudBleSDK.Padding) throws -> PlaudBleSDK.ClearMessage
+ @objc deinit
+}
+public typealias Padding = Security.SecPadding
+public enum SwiftyRSA {
+ @available(iOS 10.0, watchOS 3.0, tvOS 10.0, *)
+ public static func generateRSAKeyPair(sizeInBits size: Swift.Int) throws -> (privateKey: PlaudBleSDK.PrivateKey, publicKey: PlaudBleSDK.PublicKey)
+}
+public class ClearMessage : PlaudBleSDK.Message {
+ final public let data: Foundation.Data
+ required public init(data: Foundation.Data)
+ convenience public init(string: Swift.String, using encoding: Swift.String.Encoding) throws
+ public func string(encoding: Swift.String.Encoding) throws -> Swift.String
+ public func encrypted(with key: PlaudBleSDK.PublicKey, padding: PlaudBleSDK.Padding) throws -> PlaudBleSDK.EncryptedMessage
+ public func signed(with key: PlaudBleSDK.PrivateKey, digestType: PlaudBleSDK.Signature.DigestType) throws -> PlaudBleSDK.Signature
+ public func verify(with key: PlaudBleSDK.PublicKey, signature: PlaudBleSDK.Signature, digestType: PlaudBleSDK.Signature.DigestType) throws -> Swift.Bool
+ @objc deinit
+}
+public protocol Key : AnyObject {
+ var reference: Security.SecKey { get }
+ var originalData: Foundation.Data? { get }
+ init(data: Foundation.Data) throws
+ init(reference: Security.SecKey) throws
+ init(base64Encoded base64String: Swift.String) throws
+ init(pemEncoded pemString: Swift.String) throws
+ init(pemNamed pemName: Swift.String, in bundle: Foundation.Bundle) throws
+ init(derNamed derName: Swift.String, in bundle: Foundation.Bundle) throws
+ func pemString() throws -> Swift.String
+ func data() throws -> Foundation.Data
+ func base64String() throws -> Swift.String
+}
+extension PlaudBleSDK.Key {
+ public func base64String() throws -> Swift.String
+ public func data() throws -> Foundation.Data
+ public init(base64Encoded base64String: Swift.String) throws
+ public init(pemEncoded pemString: Swift.String) throws
+ public init(pemNamed pemName: Swift.String, in bundle: Foundation.Bundle = Bundle.main) throws
+ public init(derNamed derName: Swift.String, in bundle: Foundation.Bundle = Bundle.main) throws
+}
+@_hasMissingDesignatedInitializers final public class BleLogger {
+ public static let shared: PlaudBleSDK.BleLogger
+ final public func setLog(opened: Swift.Bool, logBlock: ((Swift.String) -> Swift.Void)? = nil, wlogBlock: ((Swift.String) -> Swift.Void)? = nil, sync: Swift.Bool = false)
+ final public func log(_ text: Swift.String, data: Foundation.Data? = nil, maxBytes: Swift.Int? = 80)
+ final public func wLog(_ text: Swift.String, data: Foundation.Data? = nil, maxBytes: Swift.Int? = 80)
+ @objc deinit
+}
+public protocol BleFeatureProvider {
+ func isFeatureFlagEnabled(_ key: Swift.String) -> Swift.Bool
+ func getFeatureFlag(_ key: Swift.String) -> Any?
+ func isAppFeatureConfigEnabled(_ key: Swift.String) -> Swift.Bool
+ func getAppFeatureConfig(_ key: Swift.String) -> Any?
+}
+@_hasMissingDesignatedInitializers public class PenBleConfig {
+ public static var featureProvider: (any PlaudBleSDK.BleFeatureProvider)?
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @objc open class UpdateInfo : ObjectiveC.NSObject {
+ @objc public var sn: Swift.String
+ @objc public var swVersion: Swift.String
+ @objc public var currentVersion: Swift.String
+ @objc public var version: Swift.String
+ @objc public var url: Swift.String
+ @objc public var size: Swift.Int
+ @objc public var modifyDesc: Swift.String
+ @objc public var updateDesc: Swift.String
+ @objc public var updatePreTip: Swift.String
+ @objc public var updatingTip: Swift.String
+ @objc public var failureTip: Swift.String
+ @objc public var fromVersion: Swift.String
+ @objc public var toVersion: Swift.String
+ @objc public var md5: Swift.String
+ @objc override dynamic public init()
+ @objc public func hasNewVersion(_ device: PlaudBleSDK.BleDevice) -> Swift.Bool
+ @objc public func checkMD5(path: Swift.String) -> Swift.Bool
+ @objc public func toString() -> Swift.String
+ @objc deinit
+}
+@objc(PublicKey) public class _objc_PublicKey : ObjectiveC.NSObject, PlaudBleSDK.Key {
+ @objc public var reference: Security.SecKey {
+ @objc get
+ }
+ @objc public var originalData: Foundation.Data? {
+ @objc get
+ }
+ @objc public func pemString() throws -> Swift.String
+ @objc public func data() throws -> Foundation.Data
+ @objc public func base64String() throws -> Swift.String
+ required public init(swiftValue: PlaudBleSDK.PublicKey)
+ @objc required public init(data: Foundation.Data) throws
+ @objc required public init(reference: Security.SecKey) throws
+ @objc required public init(base64Encoded base64String: Swift.String) throws
+ @objc required public init(pemEncoded pemString: Swift.String) throws
+ @objc required public init(pemNamed pemName: Swift.String, in bundle: Foundation.Bundle) throws
+ @objc required public init(derNamed derName: Swift.String, in bundle: Foundation.Bundle) throws
+ @objc public static func publicKeys(pemEncoded pemString: Swift.String) -> [PlaudBleSDK._objc_PublicKey]
+ @objc deinit
+}
+@objc(PrivateKey) public class _objc_PrivateKey : ObjectiveC.NSObject, PlaudBleSDK.Key {
+ @objc public var reference: Security.SecKey {
+ @objc get
+ }
+ @objc public var originalData: Foundation.Data? {
+ @objc get
+ }
+ @objc public func pemString() throws -> Swift.String
+ @objc public func data() throws -> Foundation.Data
+ @objc public func base64String() throws -> Swift.String
+ required public init(swiftValue: PlaudBleSDK.PrivateKey)
+ @objc required public init(data: Foundation.Data) throws
+ @objc required public init(reference: Security.SecKey) throws
+ @objc required public init(base64Encoded base64String: Swift.String) throws
+ @objc required public init(pemEncoded pemString: Swift.String) throws
+ @objc required public init(pemNamed pemName: Swift.String, in bundle: Foundation.Bundle) throws
+ @objc required public init(derNamed derName: Swift.String, in bundle: Foundation.Bundle) throws
+ @objc deinit
+}
+@_hasMissingDesignatedInitializers @objc(VerificationResult) public class _objc_VerificationResult : ObjectiveC.NSObject {
+ @objc final public let isSuccessful: Swift.Bool
+ @objc deinit
+}
+@objc(ClearMessage) public class _objc_ClearMessage : ObjectiveC.NSObject, PlaudBleSDK.Message {
+ @objc public var base64String: Swift.String {
+ @objc get
+ }
+ @objc public var data: Foundation.Data {
+ @objc get
+ }
+ required public init(swiftValue: PlaudBleSDK.ClearMessage)
+ @objc required public init(data: Foundation.Data)
+ @objc required public init(string: Swift.String, using rawEncoding: Swift.UInt) throws
+ @objc required public init(base64Encoded base64String: Swift.String) throws
+ @objc public func string(encoding rawEncoding: Swift.UInt) throws -> Swift.String
+ @objc public func encrypted(with key: PlaudBleSDK._objc_PublicKey, padding: PlaudBleSDK.Padding) throws -> PlaudBleSDK._objc_EncryptedMessage
+ @objc public func signed(with key: PlaudBleSDK._objc_PrivateKey, digestType: PlaudBleSDK._objc_Signature.DigestType) throws -> PlaudBleSDK._objc_Signature
+ @objc public func verify(with key: PlaudBleSDK._objc_PublicKey, signature: PlaudBleSDK._objc_Signature, digestType: PlaudBleSDK._objc_Signature.DigestType) throws -> PlaudBleSDK._objc_VerificationResult
+ @objc deinit
+}
+@objc(EncryptedMessage) public class _objc_EncryptedMessage : ObjectiveC.NSObject, PlaudBleSDK.Message {
+ @objc public var base64String: Swift.String {
+ @objc get
+ }
+ @objc public var data: Foundation.Data {
+ @objc get
+ }
+ required public init(swiftValue: PlaudBleSDK.EncryptedMessage)
+ @objc required public init(data: Foundation.Data)
+ @objc required public init(base64Encoded base64String: Swift.String) throws
+ @objc public func decrypted(with key: PlaudBleSDK._objc_PrivateKey, padding: PlaudBleSDK.Padding) throws -> PlaudBleSDK._objc_ClearMessage
+ @objc deinit
+}
+@objc(Signature) public class _objc_Signature : ObjectiveC.NSObject {
+ @objc public enum DigestType : Swift.Int {
+ case sha1
+ case sha224
+ case sha256
+ case sha384
+ case sha512
+ public init?(rawValue: Swift.Int)
+ public typealias RawValue = Swift.Int
+ public var rawValue: Swift.Int {
+ get
+ }
+ }
+ @objc public var base64String: Swift.String {
+ @objc get
+ }
+ @objc public var data: Foundation.Data {
+ @objc get
+ }
+ required public init(swiftValue: PlaudBleSDK.Signature)
+ @objc public init(data: Foundation.Data)
+ @objc required public init(base64Encoded base64String: Swift.String) throws
+ @objc deinit
+}
+extension PlaudBleSDK.BleAgent.ConnectStage : Swift.Equatable {}
+extension PlaudBleSDK.BleAgent.ConnectStage : Swift.Hashable {}
+extension PlaudBleSDK.BleAgent.ConnectStage : Swift.RawRepresentable {}
+extension PlaudBleSDK.CustomerAuth : Swift.Equatable {}
+extension PlaudBleSDK.CustomerAuth : Swift.Hashable {}
+extension PlaudBleSDK.SSNAuth : Swift.Equatable {}
+extension PlaudBleSDK.SSNAuth : Swift.Hashable {}
+extension PlaudBleSDK.CommonType : Swift.Equatable {}
+extension PlaudBleSDK.CommonType : Swift.Hashable {}
+extension PlaudBleSDK.CommonType : Swift.RawRepresentable {}
+extension PlaudBleSDK.CommonAction : Swift.Equatable {}
+extension PlaudBleSDK.CommonAction : Swift.Hashable {}
+extension PlaudBleSDK.CommonAction : Swift.RawRepresentable {}
+extension PlaudBleSDK.BacklightBright : Swift.Equatable {}
+extension PlaudBleSDK.BacklightBright : Swift.Hashable {}
+extension PlaudBleSDK.BacklightBright : Swift.RawRepresentable {}
+extension PlaudBleSDK.BacklightDuration : Swift.Equatable {}
+extension PlaudBleSDK.BacklightDuration : Swift.Hashable {}
+extension PlaudBleSDK.BacklightDuration : Swift.RawRepresentable {}
+extension PlaudBleSDK.LanguageType : Swift.Equatable {}
+extension PlaudBleSDK.LanguageType : Swift.Hashable {}
+extension PlaudBleSDK.LanguageType : Swift.RawRepresentable {}
+extension PlaudBleSDK.RecScene : Swift.Equatable {}
+extension PlaudBleSDK.RecScene : Swift.Hashable {}
+extension PlaudBleSDK.RecScene : Swift.RawRepresentable {}
+extension PlaudBleSDK.RecMode : Swift.Equatable {}
+extension PlaudBleSDK.RecMode : Swift.Hashable {}
+extension PlaudBleSDK.RecMode : Swift.RawRepresentable {}
+extension PlaudBleSDK.VadSensitivity : Swift.Equatable {}
+extension PlaudBleSDK.VadSensitivity : Swift.Hashable {}
+extension PlaudBleSDK.VadSensitivity : Swift.RawRepresentable {}
+extension PlaudBleSDK.VpuGain : Swift.Equatable {}
+extension PlaudBleSDK.VpuGain : Swift.Hashable {}
+extension PlaudBleSDK.VpuGain : Swift.RawRepresentable {}
+extension PlaudBleSDK.SwitchHandlerID : Swift.Equatable {}
+extension PlaudBleSDK.SwitchHandlerID : Swift.Hashable {}
+extension PlaudBleSDK.SwitchHandlerID : Swift.RawRepresentable {}
+extension PlaudBleSDK.WebsocketType : Swift.Equatable {}
+extension PlaudBleSDK.WebsocketType : Swift.Hashable {}
+extension PlaudBleSDK.WebsocketType : Swift.RawRepresentable {}
+extension PlaudBleSDK.AutoClear : Swift.Equatable {}
+extension PlaudBleSDK.AutoClear : Swift.Hashable {}
+extension PlaudBleSDK.AutoClear : Swift.RawRepresentable {}
+extension PlaudBleSDK.NetworkReachabilityManager.ConnectionType : Swift.Equatable {}
+extension PlaudBleSDK.NetworkReachabilityManager.ConnectionType : Swift.Hashable {}
+extension PlaudBleSDK.Signature.DigestType : Swift.Equatable {}
+extension PlaudBleSDK.Signature.DigestType : Swift.Hashable {}
+extension PlaudBleSDK._objc_Signature.DigestType : Swift.Equatable {}
+extension PlaudBleSDK._objc_Signature.DigestType : Swift.Hashable {}
+extension PlaudBleSDK._objc_Signature.DigestType : Swift.RawRepresentable {}
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/module.modulemap b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/module.modulemap
new file mode 100644
index 0000000..a90e718
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/module.modulemap
@@ -0,0 +1,11 @@
+framework module PlaudBleSDK {
+ umbrella header "PlaudBleSDK.h"
+ export *
+
+ module * { export * }
+}
+
+module PlaudBleSDK.Swift {
+ header "PlaudBleSDK-Swift.h"
+ requires objc
+}
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/PlaudBleSDK b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/PlaudBleSDK
new file mode 100755
index 0000000..03c9d32
Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/PlaudBleSDK differ
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/Info.plist b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/Info.plist
new file mode 100644
index 0000000..2879f4e
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/Info.plist
@@ -0,0 +1,27 @@
+
+
+
+
+ AvailableLibraries
+
+
+ BinaryPath
+ PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK
+ LibraryIdentifier
+ ios-arm64
+ LibraryPath
+ PlaudDeviceBasicSDK.framework
+ SupportedArchitectures
+
+ arm64
+
+ SupportedPlatform
+ ios
+
+
+ CFBundlePackageType
+ XFWK
+ XCFrameworkFormatVersion
+ 1.0
+
+
diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK-Swift.h b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK-Swift.h
new file mode 100644
index 0000000..d17d264
--- /dev/null
+++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK-Swift.h
@@ -0,0 +1,1887 @@
+#if 0
+#elif defined(__arm64__) && __arm64__
+// Generated by Apple Swift version 6.0.3 effective-5.10 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)
+#ifndef PLAUDDEVICEBASICSDK_SWIFT_H
+#define PLAUDDEVICEBASICSDK_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 "-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)
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
+#if defined(__arm64e__) && __has_include()
+# include