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 +#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 AVFAudio; +@import CoreFoundation; +@import Foundation; +@import ObjectiveC; +@import PlaudBleSDK; +@import PlaudWiFiSDK; +@import UIKit; +#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="PlaudDeviceBasicSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) + +@interface AVAudioPlayer (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer * _Nonnull)_ successfully:(BOOL)flag; +- (void)audioPlayerDecodeErrorDidOccur:(AVAudioPlayer * _Nonnull)_ error:(NSError * _Nullable)error; +@end + + +typedef SWIFT_ENUM(NSInteger, AudioDecryptorError, open) { + AudioDecryptorErrorInvalidHeader = 1, + AudioDecryptorErrorInvalidSymmetricKey = 2, + AudioDecryptorErrorNoEncryptedData = 3, + AudioDecryptorErrorDecryptionFailed = 4, +}; +static NSString * _Nonnull const AudioDecryptorErrorDomain = @"PlaudDeviceBasicSDK.AudioDecryptorError"; + +@class NSString; + +/// 音频导出回调协议(与 Android AudioExporter.ExportCallback 一致) +SWIFT_PROTOCOL("_TtP19PlaudDeviceBasicSDK19AudioExportCallback_") +@protocol AudioExportCallback +/// 导出进度更新 +/// \param progress 进度百分比 (0-100) +/// +/// \param message 状态消息 +/// +- (void)onProgress:(NSInteger)progress message:(NSString * _Nonnull)message; +/// 导出完成 +/// \param outputPath 输出文件路径 +/// +- (void)onCompleteWithOutputPath:(NSString * _Nonnull)outputPath; +/// 导出失败 +/// \param error 错误信息 +/// +- (void)onError:(NSString * _Nonnull)error; +@end + +/// 音频导出格式枚举(与 Android AudioExportFormat 一致) +/// 定义了 SDK 支持的音频导出格式 +typedef SWIFT_ENUM(NSInteger, AudioExportFormat, open) { +/// PCM 格式 - 原始音频数据 +/// 需要知道采样率和声道数才能正确播放 +/// 16kHz, 16-bit, mono + AudioExportFormatPcm = 0, +/// MP3 格式 - LAME 编码 +/// 通用播放格式,兼容性最好 + AudioExportFormatMp3 = 1, +/// WAV 格式(推荐) +/// 带头信息的 PCM,可直接播放 +/// 包含采样率、声道数等元数据 + AudioExportFormatWav = 2, +/// Opus 格式 - OGG/Opus 容器 +/// 高压缩比,适合语音,文件体积小 + AudioExportFormatOpus = 3, +}; + +@class PlaudEncryptHeader; + +/// Audio file E2EE decryptor for NotePro devices. +/// NotePro audio files have two encryption layers: +///
    +///
  1. +/// BLE Transport Layer - ChaCha20-Poly1305 (handled by BleAgent) +///
  2. +///
  3. +/// File Content Layer - RSA encrypted key header + ChaCha20 encrypted data (handled here) +///
  4. +///
+SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK18AudioFileDecryptor") +@interface AudioFileDecryptor : NSObject +/// Decrypt an E2EE encrypted audio file +/// \param inputPath The encrypted audio file path +/// +/// \param privateKeyPem The RSA private key in PEM format +/// +/// \param outputPath Optional output file path. If nil, creates a temp file +/// +/// +/// returns: +/// The decrypted audio file path, or original path if not encrypted ++ (NSString * _Nullable)decryptAudioFileWithInputPath:(NSString * _Nonnull)inputPath privateKeyPem:(NSString * _Nonnull)privateKeyPem outputPath:(NSString * _Nullable)outputPath error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT; +/// Check if a file is E2EE encrypted ++ (BOOL)isFileEncryptedWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +/// Get the PlaudEncryptHeader from a file ++ (PlaudEncryptHeader * _Nullable)getHeaderWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +@interface BleAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// 解密 E2EE 加密的音频文件 +- (NSString * _Nullable)decryptE2EEAudioFileWithInputPath:(NSString * _Nonnull)inputPath outputPath:(NSString * _Nullable)outputPath privateKeyPem:(NSString * _Nonnull)privateKeyPem error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT; +- (BOOL)isE2EEEncryptedFileWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +- (PlaudEncryptHeader * _Nullable)getE2EEFileHeaderWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +@end + + +@interface BleAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +@property (nonatomic, readonly) BOOL isEncryptionSupported; +- (NSDictionary * _Nonnull)getEncryptionProtocolInfo SWIFT_WARN_UNUSED_RESULT; +@end + +@protocol JXOggPlayerDelegate; +@class JXOggPlayer; + +@interface BleAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (BOOL)playDecryptedOggFileWithEncryptedFilePath:(NSString * _Nonnull)encryptedFilePath channel:(int32_t)channel delegate:(id _Nullable)delegate key:(NSString * _Nullable)key nonce:(NSString * _Nullable)nonce ad:(NSString * _Nullable)ad SWIFT_WARN_UNUSED_RESULT; +- (void)stopOggPlayback; +- (void)pauseOggPlayback; +- (void)resumeOggPlayback; +- (JXOggPlayer * _Nonnull)getOggPlayer SWIFT_WARN_UNUSED_RESULT; +@end + +@class NSData; + +@interface BleAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// 是否已建立加密通道 +@property (nonatomic, readonly) BOOL isSecureChannelEstablished; +/// 获取当前加密密钥(Base64编码,用于文件解密) +- (NSString * _Nullable)getEncryptionKey SWIFT_WARN_UNUSED_RESULT; +/// 获取当前加密Nonce(Base64编码) +- (NSString * _Nullable)getEncryptionNonce SWIFT_WARN_UNUSED_RESULT; +/// 获取当前加密AD(Base64编码) +- (NSString * _Nullable)getEncryptionAD SWIFT_WARN_UNUSED_RESULT; +/// 获取完整的加密参数 +- (NSDictionary * _Nullable)getEncryptionParameters SWIFT_WARN_UNUSED_RESULT; +/// 解密加密的OGG文件数据 +- (NSData * _Nullable)decryptFileData:(NSData * _Nonnull)encryptedData key:(NSString * _Nullable)key nonce:(NSString * _Nullable)nonce ad:(NSString * _Nullable)ad error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT; +/// 解密加密的OGG文件 +- (BOOL)decryptFileWithInputPath:(NSString * _Nonnull)inputPath outputPath:(NSString * _Nonnull)outputPath key:(NSString * _Nullable)key nonce:(NSString * _Nullable)nonce ad:(NSString * _Nullable)ad SWIFT_WARN_UNUSED_RESULT; +/// 解密并准备OGG文件 +- (NSString * _Nullable)decryptAndPrepareOggFileWithEncryptedFilePath:(NSString * _Nonnull)encryptedFilePath channel:(int32_t)channel key:(NSString * _Nullable)key nonce:(NSString * _Nullable)nonce ad:(NSString * _Nullable)ad SWIFT_WARN_UNUSED_RESULT; +@end + + + + + +typedef SWIFT_ENUM(NSInteger, EncryptionError, open) { + EncryptionErrorNoKey = 1, + EncryptionErrorNoNonce = 2, + EncryptionErrorNoAD = 3, + EncryptionErrorDataTooShort = 4, + EncryptionErrorDecryptionFailed = 5, +}; +static NSString * _Nonnull const EncryptionErrorDomain = @"PlaudDeviceBasicSDK.EncryptionError"; + + + + +/// Latest version response model +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK21LatestVersionResponse") +@interface LatestVersionResponse : NSObject +@property (nonatomic, readonly, copy) NSString * _Nonnull type; +@property (nonatomic, readonly, copy) NSString * _Nonnull model; +@property (nonatomic, readonly, copy) NSString * _Nonnull version_type; +@property (nonatomic, readonly, copy) NSString * _Nonnull version_code; +@property (nonatomic, readonly, copy) NSString * _Nonnull version_number; +@property (nonatomic, readonly, copy) NSString * _Nonnull version_description; +@property (nonatomic, readonly) BOOL is_force; +@property (nonatomic, readonly) BOOL is_strong_guidance; +@property (nonatomic, readonly, copy) NSString * _Nullable file_md5; +@property (nonatomic, readonly, copy) NSString * _Nonnull download_url; +/// Compatibility property: version number (mapped to version_number) +@property (nonatomic, readonly, copy) NSString * _Nonnull version; +/// Compatibility property: release notes (mapped to version_description) +@property (nonatomic, readonly, copy) NSString * _Nullable release_notes; +/// Compatibility property: force update (mapped to is_force) +@property (nonatomic, readonly) BOOL force_update; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + + + + +/// Parser for standard Ogg/Opus format files +/// Used for E2EE decrypted audio files which are in standard OGG format +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK13OggOpusParser") +@interface OggOpusParser : NSObject +/// Reset the shared decoder (no-op, JXOpusDecoder manages its own lifecycle) ++ (void)resetDecoder; +@property (nonatomic, readonly) NSInteger parsedSampleRate; +@property (nonatomic, readonly) NSInteger parsedChannels; +@property (nonatomic, readonly) NSInteger parsedPreSkip; +/// Parse Ogg Opus data and extract all Opus frames +/// \param oggData The Ogg Opus file data +/// +/// +/// returns: +/// Array of raw Opus frames +- (NSArray * _Nonnull)parse:(NSData * _Nonnull)oggData SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class NSCoder; +@class NSBundle; + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK30PlaudAudioPlayerViewController") +@interface PlaudAudioPlayerViewController : UIViewController +- (nonnull instancetype)initWithSessionId:(NSInteger)sessionId OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ SWIFT_UNAVAILABLE; +- (void)viewDidLoad; +- (void)viewWillDisappear:(BOOL)animated; +- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer * _Nonnull)_ successfully:(BOOL)flag; +- (void)audioPlayerDecodeErrorDidOccur:(AVAudioPlayer * _Nonnull)_ error:(NSError * _Nullable)error; +- (void)audioPlayerBeginInterruption:(AVAudioPlayer * _Nonnull)_; +- (void)audioPlayerEndInterruption:(AVAudioPlayer * _Nonnull)_ withOptions:(NSUInteger)_; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE; +@end + + +SWIFT_RESILIENT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudBleDevice") +@interface PlaudBleDevice : BleDevice +- (nonnull instancetype)initWithSn:(NSString * _Nonnull)sn OBJC_DESIGNATED_INITIALIZER; +@end + +@protocol PlaudDeviceAgentProtocol; +enum PlaudDownloadFormat : NSInteger; + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK16PlaudDeviceAgent") +@interface PlaudDeviceAgent : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudDeviceAgent * _Nonnull shared;) ++ (PlaudDeviceAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +@property (nonatomic, strong) BleDevice * _Nullable recentConnectDevice; +@property (nonatomic, readonly) NSInteger sceneFlag; +/// WiFi 快传进行中标记,抑制 BLE 断连时的缓存清除和自动重连 +@property (nonatomic, readonly) BOOL isWiFiTransferActive; +/// 是否跳过 SDK 权限检查(NotePro 新固件不需要传统的 appKey/appSecret 权限验证) +@property (nonatomic) BOOL skipPermissionCheck; +@property (nonatomic, weak) id _Nullable delegate; +/// Current recording file or sync (download) file sessionId +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Initialize SDK (recommended) +/// \param userAccessToken User Access Token (JWT),用于设备认证、sn-sign、gen-key。 +/// 握手 token 自动从 JWT sub 字段解析,无需手动传入。 +/// +/// \param customDomain 服务端域名(如 “platform-us.plaud.ai”),不含 https://。 +/// SDK 所有网络请求都使用此域名。 +/// +/// \param extra 额外参数(可选) +/// +- (void)initSDKWithUserAccessToken:(NSString * _Nonnull)userAccessToken customDomain:(NSString * _Nonnull)customDomain extra:(NSDictionary * _Nonnull)extra SWIFT_METHOD_FAMILY(none); +/// Initialize SDK (legacy, 兼容旧版本) +/// \param hostName (已废弃)服务端 URL,被 customDomain 替代 +/// +/// \param appKey (已废弃)App key +/// +/// \param appSecret (已废弃)App secret +/// +/// \param bindToken (已废弃)握手 token,当 partnerToken 存在时自动从 JWT sub 字段解析 +/// +/// \param extra 额外参数 +/// +/// \param customDomain 服务端域名(如 “platform-us.plaud.ai”),不含 https:// +/// +/// \param partnerToken (已废弃)请使用 userAccessToken 参数。User Access Token (JWT) +/// +- (void)initSDKWithHostName:(NSString * _Nonnull)hostName appKey:(NSString * _Nonnull)appKey appSecret:(NSString * _Nonnull)appSecret bindToken:(NSString * _Nonnull)bindToken extra:(NSDictionary * _Nonnull)extra customDomain:(NSString * _Nullable)customDomain partnerToken:(NSString * _Nullable)partnerToken SWIFT_METHOD_FAMILY(none); +/// 动态更新 User Access Token +/// 可在 SDK 初始化后调用,token 刷新时使用 +/// \param token User Access Token (JWT) +/// +- (void)setUserAccessToken:(NSString * _Nullable)token; +/// (已废弃)请使用 setUserAccessToken +- (void)setPartnerToken:(NSString * _Nullable)token SWIFT_DEPRECATED_MSG("", "setUserAccessToken:"); +/// 检查 Partner API 数据是否已准备好 +- (BOOL)isPartnerDataReady SWIFT_WARN_UNUSED_RESULT; ++ (NSString * _Nonnull)getTestAppKey:(BOOL)beta SWIFT_WARN_UNUSED_RESULT; ++ (NSString * _Nonnull)getTestAppSecret:(BOOL)beta SWIFT_WARN_UNUSED_RESULT; +- (void)depairWithClear:(BOOL)clear; +- (void)setDeviceWiFiWithOpen:(BOOL)open; +/// 结束 WiFi 快传模式(WiFi 断开后调用,恢复 BLE 正常行为) +- (void)endWiFiTransfer; +- (void)setDeviceBindingWithToken:(NSString * _Nonnull)token; +/// Start scan +/// @see stopScan() +/// @see Callback bleScanResult +- (void)startScan; +/// End scan +/// @see startScan() +- (void)stopScan; +- (BOOL)isConnected SWIFT_WARN_UNUSED_RESULT; +/// Connect bluetooth device +/// \param bleDevice Wrapped bluetooth device +/// +/// \param deviceToken device token +/// @see Callback bleConnectState +/// @see Callback bleBind +/// +- (void)connectBleDeviceWithBleDevice:(BleDevice * _Nonnull)bleDevice deviceToken:(NSString * _Nonnull)deviceToken; +/// Connect bluetooth device +/// \param bleDevice Wrapped bluetooth device +/// @see Callback bleConnectState +/// @see Callback bleBind +/// +- (void)connectBleDeviceWithBleDevice:(BleDevice * _Nonnull)bleDevice; +/// Disconnect bluetooth connection +- (void)disconnect; +- (void)tryReconnectLastDevice; +/// Read recorder status, return state and privacy status +/// @see Callback blePenState +- (void)getState; +/// Read recorder remaining space +/// @see Callback bleStorage +- (void)getStorage; +/// Wifi sync switch +/// @see Callback onWifiSyncEnabled +- (void)getWifiSyncEnable; +/// Wifi sync switch +/// \param value 0: off 1: on +/// +- (void)setWifiSyncEnableWithValue:(NSInteger)value; +/// Initiate idle sync Wi-Fi test +/// \param wifiIndex Wi-Fi number (4 bytes) +/// +- (void)setWifiSyncTestWithWifiIndex:(uint32_t)wifiIndex; +/// Get idle sync Wi-Fi test result +/// \param wifiIndex Wi-Fi number (4 bytes) +/// +- (void)getWifiSyncTestResultWithWifiIndex:(uint32_t)wifiIndex; +/// Get battery level status +/// @see Callback blePowerChange +/// @see Callback bleChargingState +- (void)getChargingState; +/// Set microphone gain +/// \param value Microphone gain value, range 0 - 30 +/// +- (void)setMicGainWithValue:(NSInteger)value; +/// Get microphone gain +/// @see bleMicGain +- (void)readMicGain; +/// Enable U disk mode +/// \param onOff 1 enable; 0 disable +/// +- (void)setUDiskModeOnOff:(BOOL)onOff; +- (BOOL)checkIsRecording SWIFT_WARN_UNUSED_RESULT; +- (BOOL)checkIsDownloading SWIFT_WARN_UNUSED_RESULT; +/// Start recording +/// If recording starts successfully, need to call syncFile to sync file yourself +/// Can display real-time recording duration through sync file offset +/// @see Callback bleRecordStart +- (void)startRecord; +/// Wake/sleep setting +/// 0: sleep; 1: wake +- (void)setDeviceActiveWithStatus:(NSInteger)status; +/// Stop current recording +/// @see Callback bleRecordStop +- (void)stopRecord; +/// Set device name +- (void)setDeviceName:(NSString * _Nonnull)name; +- (NSInteger)getCurrentSessionID SWIFT_WARN_UNUSED_RESULT; +/// Pause recording +/// Resume through resumeRecord() +/// @see Callback bleRecordPause +- (void)pauseRecord; +/// Resume recording +/// @see Callback bleRecordResume +- (void)resumeRecord; +/// Get session list (get file list after a certain sessionId) +/// This command is not available during recording +/// This command is not available in U disk mode +/// \param uid Used to distinguish different commands +/// +/// \param sessionId Which file to start syncing from, 0 means sync all +/// @see Callback bleFileList +/// +- (void)getFileListWithStartSessionId:(NSInteger)startSessionId; +/// This command is not available during recording +/// This command is not available in U disk mode +/// \param sessionId File id +/// Query file corresponding to this sessionId (get real-time recording file length after real-time recording ends) +/// @see Callback bleFileList +/// +- (void)getFileWithSessionId:(NSInteger)sessionId; +/// Sync (download) file +/// \param sessionId Recording file unique id +/// +/// \param start Recording file start position (bytes) +/// +/// \param end Sync to where? Generally pass 0, means sync to file end (bytes) +/// @see Callback bleSyncFileHead +/// @see Callback bleSyncFileTail +/// @see Callback bleData +/// @see Callback bleDecodeFail +/// @see Callback bleDataComplete +/// @see Callback blePcmData +/// +- (void)syncFileWithSessionId:(NSInteger)sessionId start:(NSInteger)start end:(NSInteger)end; +/// Download composite file (complete file) +/// \param sessionId File unique ID +/// +/// \param desiredOutputPath Desired output path (without extension) +/// +/// \param format Output format. Options: .wav (recommended, playable), .pcm (raw audio data) +/// @see Callback bleDownloadFile +/// +- (void)downloadFileWithSessionId:(NSInteger)sessionId desiredOutputPath:(NSString * _Nonnull)desiredOutputPath format:(enum PlaudDownloadFormat)format; +/// Stop file download +/// @see Callback bleDownloadFileStop +- (void)stopDownloadFile; +/// 导出音频文件(与 Android SDK 接口一致) +/// 此方法会自动完成以下步骤: +///
    +///
  1. +/// 检查本地是否已有缓存文件 +///
  2. +///
  3. +/// 如果没有,从设备下载文件 +///
  4. +///
  5. +/// 进行 E2EE 解密(如果需要) +///
  6. +///
  7. +/// 转换为目标格式并保存 +///
  8. +///
+///
    +///
  • +/// Example: +///
  • +///
+/// \code +/// // Android: +/// // NiceBuildSdk.exportAudio(sessionId, outputDir, format, channels, callback) +/// // +/// // iOS: +/// deviceAgent.exportAudio( +/// sessionId: 1234567890, +/// outputDir: documentsPath, +/// format: .wav, +/// channels: 1, +/// callback: self +/// ) +/// +/// \endcode\param sessionId 录音文件唯一标识 +/// +/// \param outputDir 输出目录路径 +/// +/// \param format 输出格式 (.wav 推荐, .pcm) +/// +/// \param channels 声道数(默认 1,单声道) +/// +/// \param callback 导出回调(进度、完成、错误) +/// +- (void)exportAudioWithSessionId:(NSInteger)sessionId outputDir:(NSString * _Nonnull)outputDir format:(enum AudioExportFormat)format channels:(NSInteger)channels callback:(id _Nonnull)callback; +/// End file sync (download) +/// @see Callback bleSyncFileStop +- (void)stopSyncFile; +/// Delete file +/// \param sessionId Recording file unique id +/// @see Callback bleDeleteFile +/// +- (void)deleteFileWithSessionId:(NSInteger)sessionId; +/// Clear all files +/// @see Callback bleClearAllFile +- (void)clearAllFiles; +/// Factory reset +/// No callback +- (void)restoreFactory; +/// Get idle sync WiFi configuration +/// \param wifiIndex Wi-Fi number (4 bytes) +/// +- (void)getWifiSyncConfigWithWifiIndex:(uint32_t)wifiIndex; +/// Set idle sync WiFi configuration +/// \param operation Operation type 1: add, 2: modify) +/// +/// \param wifiIndex Wi-Fi number (4 bytes) +/// +/// \param ssid Wi-Fi SSID +/// +/// \param password Wi-Fi password +/// +- (void)setWifiSyncConfigWithOperation:(NSInteger)operation wifiIndex:(uint32_t)wifiIndex ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password; +/// Get idle sync WiFi list +- (void)getWifiSyncList; +/// Delete idle sync WiFi configuration +/// \param wifiIndices Array of Wi-Fi numbers to delete (each number is 4 bytes) +/// +- (void)deleteWifiSyncConfigWithWifiIndices:(NSArray * _Nonnull)wifiIndices; +@end + + + + + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (void)onBinaryFileReqWithType:(NSInteger)type packageOffset:(NSInteger)packageOffset packageSize:(NSInteger)packageSize endStatus:(NSInteger)endStatus; +- (void)onBinaryFileEndWithResult:(NSInteger)result; +@end + + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// Clears the stored SDK credentials (AppKey and AppSecret) from UserDefaults +- (void)clearSDKCredentials; +@end + + + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// Show update confirmation alert +/// \param versionInfo version information +/// +/// \param completion user selection callback +/// +- (void)showUpdateConfirmationWithVersionInfo:(LatestVersionResponse * _Nonnull)versionInfo completion:(void (^ _Nonnull)(BOOL))completion; +/// Simplified check for latest version for Objective-C +/// \param model Device model (required) +/// +/// \param snType Device type, options: note, notepin, notepro, other, default: notepin +/// +/// \param versionType Version type, options: T, G, V, default: V +/// +/// \param hasUpdate Callback with update available flag and version info +/// +/// \param failure Failure callback with error message +/// +- (void)checkLatestVersionForModel:(NSString * _Nonnull)model snType:(NSString * _Nonnull)snType versionType:(NSString * _Nonnull)versionType hasUpdate:(void (^ _Nonnull)(BOOL, LatestVersionResponse * _Nullable))hasUpdate failure:(void (^ _Nonnull)(NSString * _Nonnull))failure; +/// Simplified download update for Objective-C +/// \param versionInfo Version information to download +/// +/// \param progress Progress callback with percentage (0.0 to 1.0) +/// +/// \param success Success callback with local file path +/// +/// \param failure Failure callback with error message +/// +- (void)downloadUpdateForVersion:(LatestVersionResponse * _Nonnull)versionInfo progress:(void (^ _Nonnull)(float))progress success:(void (^ _Nonnull)(NSString * _Nonnull))success failure:(void (^ _Nonnull)(NSString * _Nonnull))failure; +@end + +@class PlaudFirmwareCheckResult; +enum PlaudFirmwarePhase : NSInteger; +@class PlaudFirmwareUpdateResult; + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// 上报设备元数据(电量、固件版本、存储等) +/// 连接成功后 SDK 自动调用,App 层通常无需手动调用 +- (void)reportDeviceMetadata; +- (void)checkFirmwareUpdateWithCompletion:(void (^ _Nonnull)(PlaudFirmwareCheckResult * _Nonnull))completion; +- (void)startFirmwareUpdateWithProgress:(void (^ _Nonnull)(enum PlaudFirmwarePhase, float))progress completion:(void (^ _Nonnull)(PlaudFirmwareUpdateResult * _Nonnull))completion; +- (void)pushFirmwareFileWithFilePath:(NSString * _Nonnull)filePath toVersion:(NSString * _Nonnull)toVersion progress:(void (^ _Nonnull)(enum PlaudFirmwarePhase, float))progress completion:(void (^ _Nonnull)(PlaudFirmwareUpdateResult * _Nonnull))completion; +@end + + +@class BleFile; +@class BleRecordMarkingTag; + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (void)bleScanResultWithBleDevices:(NSArray * _Nonnull)bleDevices; +- (void)bleScanOverTime; +- (void)bleAppKeyStateWithResult:(NSInteger)result; +- (void)bleConnectStateWithState:(NSInteger)state; +- (void)bleBindWithSn:(NSString * _Nullable)sn status:(NSInteger)status protVersion:(NSInteger)protVersion timezone:(NSInteger)timezone; +- (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; +- (void)bleStorageWithTotal:(NSInteger)total free:(NSInteger)free duration:(NSInteger)duration; +- (void)blePowerChangeWithPower:(NSInteger)power oldPower:(NSInteger)oldPower; +- (void)bleChargingStateWithIsCharging:(BOOL)isCharging level:(NSInteger)level; +- (void)bleFileListWithBleFiles:(NSArray * _Nonnull)bleFiles; +- (void)bleDataComplete; +- (void)bleRecordStartWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime; +- (void)bleRecordStopWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize; +- (void)bleRecordPauseWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize; +- (void)bleRecordResumeWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime; +- (void)bleSyncFileHeadWithSessionId:(NSInteger)sessionId status:(NSInteger)status; +- (void)bleSyncFileTailWithSessionId:(NSInteger)sessionId crc:(NSInteger)crc; +- (void)bleDataWithSessionId:(NSInteger)sessionId start:(NSInteger)start data:(NSData * _Nonnull)data; +- (void)blePcmDataWithSessionId:(NSInteger)sessionId millsec:(NSInteger)millsec pcmData:(NSData * _Nonnull)pcmData isMusic:(BOOL)isMusic; +- (void)bleDecodeFailWithStart:(NSInteger)start; +- (void)bleSyncFileStop; +- (void)bleDeleteFileWithSessionId:(NSInteger)sessionId status:(NSInteger)status; +- (void)bleDepair:(NSInteger)status; +- (void)bleMicGain:(NSInteger)value; +- (void)onSyncIdleWifiConfigReceivedWithIndex:(uint32_t)index ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password; +- (void)onSyncIdleWifiConfigSetWithResult:(NSInteger)result; +- (void)onSyncIdleWifiListReceivedWithList:(NSArray * _Nonnull)list; +- (void)onSyncIdleWifiDeleteResultWithResult:(NSInteger)result; +- (void)onSyncIdleWifiTestStartedWithIndex:(uint32_t)index; +- (void)onSyncIdleWillStartWithSeconds:(NSInteger)seconds; +- (void)onSyncIdleWifiTestResultWithIndex:(uint32_t)index result:(NSInteger)result rawCode:(NSInteger)rawCode; +- (void)bleSyncWhenIdleEnabled:(NSInteger)value; +- (void)bleUDiskErrWithFuncName:(NSString * _Nonnull)funcName; +- (void)bleWiFiOpen:(NSInteger)status :(NSString * _Nonnull)wifiName :(NSString * _Nonnull)wholeName :(NSString * _Nonnull)wifiPass; +- (void)bleDeviceNameWithName:(NSString * _Nullable)name; +- (void)bleFotaResultWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg; +- (void)bleFotaPackReqWithUid:(NSInteger)uid start:(NSInteger)start end:(NSInteger)end; +- (void)bleFotaPackFinWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg; +- (void)bleOtaDataSendFail; +- (void)bleRateWithLossRate:(double)lossRate rate:(NSInteger)rate instantRate:(NSInteger)instantRate; +- (void)bleSetActiveWithStatus:(NSInteger)status; +- (void)bleHeartbeatWithStatus:(NSInteger)status; +- (void)bleBatteryMode:(NSInteger)mode; +- (void)bleDeviceStatusWithStatus:(NSArray * _Nonnull)status; +- (void)bleNewFeatureWithData:(NSData * _Nonnull)data; +- (void)bleGetRecordMarkingTagsWithUid:(NSInteger)uid totals:(NSInteger)totals index:(NSInteger)index tags:(NSArray * _Nonnull)tags; +- (void)deviceLogDataWithStart:(NSInteger)start data:(NSData * _Nonnull)data logType:(NSInteger)logType; +- (void)onGetDeviceLogListWithData:(NSData * _Nonnull)data; +- (void)onSyncDeviceLogStartWithData:(NSData * _Nonnull)data; +- (void)onSyncDeviceLogStop; +- (void)onSyncDeviceLogEndWithData:(NSData * _Nonnull)data; +- (void)onDeviceLogDeletedWithData:(NSData * _Nonnull)data; +- (void)bleUpdatePowerLowErr; +- (void)bleDeviceDisconnectErr; +- (void)bleStateWithPowered:(BOOL)powered; +- (void)bleHandshakeWaitWithTimeout:(NSInteger)timeout; +- (void)blePenTimeWithStamp:(NSInteger)stamp timezone:(NSInteger)timezone zoneMin:(NSInteger)zoneMin; +- (void)blePasswordResetWithPassword:(NSInteger)password; +- (void)bleBacklightDuration:(NSInteger)duration; +- (void)bleBacklightBright:(NSInteger)bright; +- (void)bleLanguage:(NSInteger)type; +- (void)bleRecScene:(NSInteger)scene; +- (void)bleRecMode:(NSInteger)mode; +- (void)bleVadSensitivity:(NSInteger)value; +- (void)bleVpuGain:(NSInteger)value; +- (void)bleSwitchHandler:(NSInteger)id; +- (void)bleAutoPowerOff:(NSInteger)value; +- (void)bleRawWaveEnabled:(NSInteger)value; +- (void)bleRecordingAfterDisConnetEnabled:(NSInteger)value; +- (void)bleFindMyState:(NSInteger)value; +- (void)bleVPUCLKState:(NSInteger)value; +- (void)bleStopRecordingAfterCharging:(NSInteger)value; +- (void)bleAutoClear:(BOOL)open; +- (void)bleVad:(BOOL)open; +- (void)bleWiFiClose:(NSInteger)status; +- (void)bleSetWiFiSsidWithStatus:(NSInteger)status; +- (void)bleGetWiFiSsidWithStatus:(NSInteger)status ssid:(NSString * _Nullable)ssid; +- (void)bleVoiceAbnormalWithStatus:(NSInteger)status; +- (void)bleWebsocketProfile:(NSInteger)type :(NSString * _Nullable)conent; +- (void)bleWebsocketTest:(NSInteger)status; +- (void)bleLedStateOnOff:(NSInteger)onOff; +- (void)bleSetLedStateOnOff:(NSInteger)onOff; +- (void)bleMarkingWithSessionId:(NSInteger)sessionId status:(NSInteger)status markList:(NSArray * _Nonnull)markList; +- (void)bleAnglesWithPitchAngle:(float)pitchAngle rollbackAngle:(float)rollbackAngle yawAngle:(float)yawAngle; +- (void)blePrivacyWithPrivacy:(NSInteger)privacy; +- (void)bleClearAllFileWithStatus:(NSInteger)status; +- (void)bleAlarmRecWithStart:(NSInteger)start duration:(NSInteger)duration repeatMode:(NSInteger)repeatMode; +- (void)onResetFindmyResultWithResult:(NSInteger)result; +- (void)onCommonParamsSetResultWithSuccess:(BOOL)success dataType:(NSInteger)dataType value:(NSString * _Nullable)value; +- (void)onCommonParamsGetResultWithSuccess:(BOOL)success dataType:(NSInteger)dataType value:(NSString * _Nullable)value; +- (void)onSetSoundPlusTokenResultWithLicenseKey:(NSString * _Nonnull)licenseKey; +- (void)onGetSDFlashCIDResultWithCid:(NSString * _Nonnull)cid; +@end + + +SWIFT_PROTOCOL("_TtP19PlaudDeviceBasicSDK24PlaudDeviceAgentProtocol_") +@protocol PlaudDeviceAgentProtocol +@optional +/// AppKey verification result +/// \param result Verification result 0 temporary 1 success 2 failure +/// +- (void)bleAppKeyStateWithResult:(NSInteger)result; +@required +/// Return status +/// \param state Customized according to project (4099(0x00001003) indicates recorder is recording, 1 seems to be recording) +/// +/// \param privacy Privacy setting status +/// +/// \param keySatte Toggle switch status (new in protocol version 4) +/// +/// \param uDisk Whether U disk is enabled +/// Other two parameters are directly placed in BleAgent +/// +/// \param scene Current recording scene (0 when not recording) +/// +/// \param findMyToken Whether findmy token exists (NotePin device) +/// +/// \param hasSndpKey Whether sound plus license token exists +/// +/// \param deviceAccessToken Whether device idle sync AccessToken exists +/// +/// \param sessionId Current session id (0 when not recording) +/// +- (void)blePenStateWithState:(NSInteger)state privacy:(NSInteger)privacy keyState:(NSInteger)keyState uDisk:(NSInteger)uDisk findMyToken:(NSInteger)findMyToken hasSndpKey:(NSInteger)hasSndpKey deviceAccessToken:(NSInteger)deviceAccessToken; +@optional +/// Device name +/// \param name Device name +/// +- (void)bleDeviceNameWithName:(NSString * _Nullable)name; +/// Bluetooth device scan callback +/// \param bleDevices Bluetooth device list +/// +- (void)bleScanResultWithBleDevices:(NSArray * _Nonnull)bleDevices; +/// Scan timeout end +/// @see startScan +- (void)bleScanOverTime; +/// Bluetooth connection status +///
    +///
  • +/// Parameters state: 0 disconnected or not connected; 1 connection successful; 2 connection failed +///
  • +///
+- (void)bleConnectStateWithState:(NSInteger)state; +/// Connection callback +/// \param status Status, 0: success, >0: rejected 1: Token mismatch 2: Screen project, currently recording, user cannot confirm temporarily 3: Screen project, user manually rejected 255: Recorder not in connection mode, reject handshake request in non-connection mode (unique to Heili three-stage switch) <0 verification failed -1: no SSN -2: network exception -3: server data exception or verification incorrect +/// +/// \param protVersion Protocol version number +/// +/// \param timezone Current timezone on pen side +/// +- (void)bleBindWithSn:(NSString * _Nullable)sn status:(NSInteger)status protVersion:(NSInteger)protVersion timezone:(NSInteger)timezone; +/// Microphone sensitivity +/// \param value 1- 30 +/// +- (void)bleMicGain:(NSInteger)value; +/// Device space +/// \param total Total space size (bytes) +/// +/// \param free Remaining space size (bytes) +/// +/// \param duration Recorder’s estimated remaining recording duration (milliseconds) +/// +- (void)bleStorageWithTotal:(NSInteger)total free:(NSInteger)free duration:(NSInteger)duration; +/// Battery level change +/// \param power Current battery level +/// +/// \param oldPower Previous battery level (used to determine low battery reminders from 20%->19% and 10%->9%) +/// +- (void)blePowerChangeWithPower:(NSInteger)power oldPower:(NSInteger)oldPower; +/// Battery level status +/// \param isCharging Whether charger is plugged in 0 not plugged in 1 plugged in (BleDevice has an isCharging property that will be set after this callback, can compare previous value to determine charging status change) +/// +/// \param level Battery level 0-100 +/// +- (void)bleChargingStateWithIsCharging:(BOOL)isCharging level:(NSInteger)level; +/// Get file list callback +/// \param bleFiles File list +/// +- (void)bleFileListWithBleFiles:(NSArray * _Nonnull)bleFiles; +/// Start recording callback +/// \param sessionId Recording file unique id, 0 timezone timestamp, to convert to phone current timestamp need to subtract timezone +/// +/// \param start Recorded duration (file offset, bytes) (returns 0 if not recording before; if recording before, returns recorded duration) +/// +/// \param status 0: success, >0: failure 1: space full; 2: U disk mode; 3: hardware exception; 4: currently busy; 255: wrong mode (recorder not in recording mode, unique to Heili three-stage switch) +/// +/// \param scene Recording mode +/// +/// \param startTime Start time +/// +- (void)bleRecordStartWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime reason:(NSInteger)reason; +/// End recording callback +/// \param sessionId Recording file unique id, 0 timezone timestamp, to convert to phone current timestamp need to subtract timezone +/// +/// \param reason Reason (others undefined) +/// 1.MMI_REC_STOP_FROM_DEV /// Device side stop recording +/// 2.MMI_REC_STOP_FROM_APP /// APP side stop recording +/// 3.MMI_REC_STOP_BY_SPLIT /// Automatic time slice stop recording +/// 4.MMI_REC_STOP_BY_SWITCH /// Switch toggle stop recording) +/// +/// \param fileExist Whether file is saved +/// +/// \param fileSize File size (if available, bytes) +/// +- (void)bleRecordStopWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize; +/// Recording pause callback +/// \param sessionId Recording file unique id, 0 timezone timestamp, to convert to phone current timestamp need to subtract timezone +/// +/// \param reason Reason (currently undefined) +/// +/// \param fileExist Whether file is saved +/// +/// \param fileSize File size (if available, bytes) +/// +- (void)bleRecordPauseWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize; +/// Recording resume +///
    +///
  • +/// Parameters: +///
  • +///
  • +/// sessionId: Recording file unique id, 0 timezone timestamp, to convert to phone current timestamp need to subtract timezone +///
  • +///
  • +/// start: Recorded duration (file offset, bytes) (returns 0 if not recording before; if recording before, returns recorded duration) +///
  • +///
  • +/// status: 0: success, >0: failure 1: space full; 2: U disk mode; 3: hardware exception +///
  • +///
  • +/// scene: Recording mode (depends on project, version number) +///
  • +///
  • +/// startTime: Start time (depends on project, version number) +///
  • +///
+- (void)bleRecordResumeWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime; +/// Sync (download) file start callback +/// \param sessionId File unique id +/// +/// \param status Status, 0: success; >0: failure 1: file system currently unavailable 2: file does not exist 3: interrupted +/// +- (void)bleSyncFileHeadWithSessionId:(NSInteger)sessionId status:(NSInteger)status; +/// Sync (download) file end +/// \param sessionId File unique id +/// +/// \param crc File checksum code, verify file integrity (don’t use after recorder changed to egg file saving) +/// +- (void)bleSyncFileTailWithSessionId:(NSInteger)sessionId crc:(NSInteger)crc; +/// Voice data return +/// \param sessionId File id, protocol 7 support +/// +/// \param start Data offset in undecoded file (bytes) +/// +/// \param data Data (may be ogg data or opus pure audio, determined by firmware) +/// +- (void)bleDataWithSessionId:(NSInteger)sessionId start:(NSInteger)start data:(NSData * _Nonnull)data; +/// Return decoded pcm data +/// \param sessionId File id, protocol 7 support +/// +/// \param millsec Current voice millisecond value +/// +/// \param pcmData Decoded data, will not callback if decoding not required when starting recording; if recording is dual channel, will process to single channel; music mode is dual channel 48k sampling rate, will process to single channel 48k, not usable for recognition +/// +/// \param isMusic Is it music mode? Music mode returned pcm is not normal pcm, is 6 shorts take one, used to generate waveform, cannot be used for recognition +/// +- (void)blePcmDataWithSessionId:(NSInteger)sessionId millsec:(NSInteger)millsec pcmData:(NSData * _Nonnull)pcmData isMusic:(BOOL)isMusic; +/// Data reception completed +- (void)bleDataComplete; +/// Voice data decoding failed +/// \param start Data offset in undecoded file +/// +- (void)bleDecodeFailWithStart:(NSInteger)start; +/// Sync file terminated +- (void)bleSyncFileStop; +/// Sync composite file callback +/// \param sessionId File unique id +/// +/// \param sessionId Output file path +/// +/// \param status 0 normal -1 error +/// +/// \param progress Progress 0-100 +/// +/// \param tips Tips +/// +- (void)bleDownloadFileWithSessionId:(NSInteger)sessionId desiredOutputPath:(NSString * _Nonnull)desiredOutputPath status:(NSInteger)status progress:(NSInteger)progress tips:(NSString * _Nonnull)tips; +/// Sync file terminated +- (void)bleDownloadFileStop; +/// Delete file +/// \param sessionId Protocol version 7 support +/// +/// \param status Status, 0: delete successful; 1: recording not allowed to delete 2: favorited not allowed to delete; 3: playing not allowed to delete +/// +- (void)bleDeleteFileWithSessionId:(NSInteger)sessionId status:(NSInteger)status; +/// Unbind +/// \param status 0 success; 1 working 2 upgrading +/// +- (void)bleDepair:(NSInteger)status; +- (void)onWifiSyncConfigReceivedWithIndex:(uint32_t)index ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password; +/// Set idle sync WiFi configuration result +/// \param result Result code (0: success, 1: already exists, 2: device not found for deletion, 3: change not found, 4: operation code exception, 5: queue full, other: other errors) +/// +- (void)onWifiSyncConfigSetWithResult:(NSInteger)result; +/// Idle sync WiFi list reception +/// \param list WiFi index list +/// +- (void)onWifiSyncListReceivedWithList:(NSArray * _Nonnull)list; +/// Idle sync WiFi delete result +/// \param result Result code (0: success, -1: failure) +/// +- (void)onWifiSyncDeleteResultWithResult:(NSInteger)result; +/// Idle sync WiFi test start +/// \param index WiFi number +/// +- (void)onWifiSyncTestStartedWithIndex:(uint32_t)index; +/// Idle sync about to start +/// \param second Seconds until start +/// +- (void)onWifiSyncWillStartWithSeconds:(NSInteger)seconds; +/// Idle sync WiFi test result +/// \param index WiFi number +/// +/// \param result Test result: 0, test successful 1, wifi not found 2, Wifi password incorrect 3, Wifi connection failed 4, data transmission failed +/// +/// \param rawCode Original error code +/// +- (void)onWifiSyncTestResultWithIndex:(uint32_t)index result:(NSInteger)result rawCode:(NSInteger)rawCode; +- (void)onWifiSyncUrlWithUrl:(NSString * _Nonnull)url; +/// WiFi RSSI measurement request confirmed +/// \param status Status code (0: success, other: error) +/// +- (void)onWifiRssiRequestConfirmedWithStatus:(NSInteger)status; +- (void)onSdkFetchPermissionResultWithPass:(BOOL)pass tips:(NSString * _Nonnull)tips; +- (void)onSdkCheckPermissionResultWithPass:(BOOL)pass tips:(NSString * _Nonnull)tips; +- (void)onSdkCheckResourceResultWithPass:(BOOL)pass tips:(NSString * _Nonnull)tips; +/// Idle sync +/// \param value 0: off 1: on +/// +- (void)onWifiSyncEnabled:(NSInteger)value; +- (void)onCommonMsgChannelWithType:(NSInteger)type value:(NSInteger)value tips:(NSString * _Nonnull)tips; +/// WiFi open notification +/// \param status 0 normal, >1 forbidden to open 1 recording status, 2 U disk status +/// +/// \param wifiName Recording pen hotspot name +/// +/// \param wholeName Determine whether to append 4-digit sn suffix name +/// +/// \param wifiPass Recording pen hotspot password +/// +- (void)bleWiFiOpen:(NSInteger)status :(NSString * _Nonnull)wifiName :(NSString * _Nonnull)wholeName :(NSString * _Nonnull)wifiPass; +/// OTA notification +/// \param uid Identifier +/// +/// \param status Status 0 normal, 1. upgrade failed 2. version information mismatch 3. FLASH write failed 4. file too large 5. too many attempts 6. U disk mode; 7. recording in progress; 8. U disk insufficient remaining space; 9. working; 10. G101 glasses only allow upgrade in charging mode; 11. G101 glasses insufficient battery; 12. G101 glasses received upgrade protocol and preparing to adjust to OTA_MODE; 255: mode incorrect (recording pen not in recording mode, specific to Heili three-way switch) +/// +/// \param errmsg Protocol version 4, if upgrade successful, returns upgraded version here; if failed, still returns error message. +/// +- (void)bleFotaResultWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg; +/// OTA package request, recording pen requests to send upgrade package data +/// \param uid Identifier +/// +/// \param start Start position (bytes) +/// +/// \param end End position (bytes) +/// +- (void)bleFotaPackReqWithUid:(NSInteger)uid start:(NSInteger)start end:(NSInteger)end; +/// OTA package reception completed +/// \param uid Identifier +/// +/// \param status Status 0 normal, 1. upgrade failed 2. version information mismatch 3. FLASH write failed 4. file too large 5. too many attempts 6. U disk mode; 7. recording in progress; 8. U disk insufficient remaining space +/// +/// \param errmsg Protocol version 4, if upgrade successful, returns upgraded version here; if failed, still returns error message. +/// +- (void)bleFotaPackFinWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg; +/// OTA data send failed +- (void)bleOtaDataSendFail; +/// Wake/sleep setting +/// 0: sleep; 1: wake +- (void)bleSetActiveWithStatus:(NSInteger)status; +- (void)bleCommonSettingWithSetting:(NSInteger)setting; +/// Bluetooth transmission rate callback +/// \param lossRate Packet loss rate +/// +/// \param rate Average rate, bytes/S +/// +/// \param instantRate Real-time rate +/// +- (void)bleRateWithLossRate:(double)lossRate rate:(NSInteger)rate instantRate:(NSInteger)instantRate; +@end + +/// 文件下载输出格式 +typedef SWIFT_ENUM(NSInteger, PlaudDownloadFormat, open) { +/// PCM 格式 - 原始音频数据,需要知道采样率才能正确播放 + PlaudDownloadFormatPcm = 0, +/// MP3 格式 - 暂不支持 + PlaudDownloadFormatMp3 = 1, +/// WAV 格式(推荐)- 带头信息的 PCM,可直接播放 + PlaudDownloadFormatWav = 2, +}; + + +/// E2EE encryption header for Plaud audio files. +/// The header is 512 bytes and contains encryption metadata. +/// NotePro audio files have two encryption layers: +///
    +///
  1. +/// BLE Transport Layer - ChaCha20-Poly1305 (handled by BleAgent) +///
  2. +///
  3. +/// File Content Layer - RSA encrypted key header + ChaCha20 encrypted data (handled here) +///
  4. +///
+SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK18PlaudEncryptHeader") +@interface PlaudEncryptHeader : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger headerSize;) ++ (NSInteger)headerSize SWIFT_WARN_UNUSED_RESULT; +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull magicString;) ++ (NSString * _Nonnull)magicString SWIFT_WARN_UNUSED_RESULT; +@property (nonatomic, readonly, copy) NSData * _Nonnull magic; +@property (nonatomic, readonly) uint16_t version; +@property (nonatomic, readonly) uint16_t headerSizeValue; +@property (nonatomic, readonly) uint32_t crc; +@property (nonatomic, readonly, copy) NSData * _Nonnull userId; +@property (nonatomic, readonly) uint16_t fileType; +@property (nonatomic, readonly) uint16_t channel; +@property (nonatomic, readonly) uint16_t encryptType; +@property (nonatomic, readonly) uint32_t duration; +@property (nonatomic, readonly, copy) NSData * _Nonnull reserved; +@property (nonatomic, readonly) uint32_t counter; +@property (nonatomic, readonly, copy) NSData * _Nonnull nonce; +@property (nonatomic, readonly) uint32_t segment; +@property (nonatomic, readonly, copy) NSData * _Nonnull algParams; +@property (nonatomic, readonly, copy) NSData * _Nonnull keyCipher; +/// Parse header from raw data +- (nullable instancetype)initWithData:(NSData * _Nonnull)data OBJC_DESIGNATED_INITIALIZER; +/// Read header from file ++ (PlaudEncryptHeader * _Nullable)fromFileWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +/// Check if the file is encrypted (magic == “PLAUD.AI”) +@property (nonatomic, readonly) BOOL isEncrypted; +/// Get userId as string +@property (nonatomic, readonly, copy) NSString * _Nonnull userIdString; +@property (nonatomic, readonly, copy) NSString * _Nonnull description; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK17PlaudFileUploader") +@interface PlaudFileUploader : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudFileUploader * _Nonnull shared;) ++ (PlaudFileUploader * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +@property (nonatomic, strong) BleDevice * _Nullable device; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +- (void)uploadRecordingWithSn:(NSString * _Nonnull)sn sessionId:(NSInteger)sessionId duration:(double)duration onProgress:(void (^ _Nonnull)(double))onProgress onSuccess:(void (^ _Nonnull)(NSDictionary * _Nonnull))onSuccess onFailure:(void (^ _Nonnull)(NSError * _Nonnull))onFailure; +/// Upload log file +/// \param filePath Path to the log file +/// +/// \param sn Device serial number +/// +/// \param onProgress Upload progress callback (0.0 to 1.0) +/// +/// \param onSuccess Success callback with upload result +/// +/// \param onFailure Failure callback with error +/// +- (void)uploadLogFileWithFilePath:(NSString * _Nonnull)filePath sn:(NSString * _Nonnull)sn onProgress:(void (^ _Nonnull)(double))onProgress onSuccess:(void (^ _Nonnull)(NSDictionary * _Nonnull))onSuccess onFailure:(void (^ _Nonnull)(NSError * _Nonnull))onFailure; ++ (NSString * _Nonnull)calculateSnTypeWithSn:(NSString * _Nonnull)sn SWIFT_WARN_UNUSED_RESULT; +@end + + +/// 固件版本检查结果 +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK24PlaudFirmwareCheckResult") +@interface PlaudFirmwareCheckResult : NSObject +@property (nonatomic, readonly) BOOL hasUpdate; +@property (nonatomic, readonly, copy) NSString * _Nonnull currentVersion; +@property (nonatomic, readonly, copy) NSString * _Nonnull latestVersion; +@property (nonatomic, readonly) NSInteger versionCode; +@property (nonatomic, readonly, copy) NSString * _Nonnull releaseNotes; +@property (nonatomic, readonly, copy) NSString * _Nonnull downloadUrl; +@property (nonatomic, readonly, copy) NSString * _Nonnull md5; +@property (nonatomic, readonly) BOOL isForce; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +/// 固件升级进度 +typedef SWIFT_ENUM(NSInteger, PlaudFirmwarePhase, open) { + PlaudFirmwarePhaseDownloading = 0, + PlaudFirmwarePhaseInstalling = 1, + PlaudFirmwarePhaseRestarting = 2, + PlaudFirmwarePhaseComplete = 3, +}; + + +/// 固件升级结果 +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK25PlaudFirmwareUpdateResult") +@interface PlaudFirmwareUpdateResult : NSObject +@property (nonatomic, readonly) BOOL success; +@property (nonatomic, readonly, copy) NSString * _Nonnull version; +@property (nonatomic, readonly, copy) NSString * _Nullable errorMessage; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + + +/// Centralized log configuration manager for all Plaud SDK modules +/// Located in PenBleSDK to avoid reverse dependency issues +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudLogConfig") +@interface PlaudLogConfig : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudLogConfig * _Nonnull shared;) ++ (PlaudLogConfig * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Maximum number of log files to keep +@property (nonatomic, readonly) NSInteger maxFileCount; +/// Maximum age of log files in seconds (default: 7 days) +@property (nonatomic, readonly) NSTimeInterval maxFileAge; +/// Maximum size of individual log file in bytes (default: 10MB) +@property (nonatomic, readonly) int64_t maxFileSize; +/// Upload interval in seconds (DEBUG: 1 minute, RELEASE: 5 minutes) +@property (nonatomic, readonly) NSTimeInterval uploadInterval; +/// Upload timeout in seconds (default: 30 seconds) +@property (nonatomic, readonly) NSTimeInterval uploadTimeout; +/// Update log file management configuration +/// \param maxFileCount Maximum number of log files to keep (1-50) +/// +/// \param maxFileAge Maximum age of log files in seconds (1 hour - 30 days) +/// +/// \param maxFileSize Maximum size of individual log file in bytes (1MB - 100MB) +/// +- (void)updateFileConfigurationWithMaxFileCount:(NSInteger)maxFileCount maxFileAge:(NSTimeInterval)maxFileAge maxFileSize:(int64_t)maxFileSize; +/// Update upload configuration +/// \param uploadInterval Upload interval in seconds (60s - 3600s) +/// +/// \param uploadTimeout Upload timeout in seconds (10s - 300s) +/// +- (void)updateUploadConfigurationWithUploadInterval:(NSTimeInterval)uploadInterval uploadTimeout:(NSTimeInterval)uploadTimeout; +/// Reset configuration to default values +- (void)resetToDefaults; +/// Get current configuration as dictionary +- (NSDictionary * _Nonnull)getCurrentConfiguration SWIFT_WARN_UNUSED_RESULT; +/// Get max file age in days +@property (nonatomic, readonly) NSInteger maxFileAgeDays; +/// Get max file size in MB +@property (nonatomic, readonly) NSInteger maxFileSizeMB; +/// Get upload interval in minutes +@property (nonatomic, readonly) NSInteger uploadIntervalMinutes; +/// Get upload timeout in seconds +@property (nonatomic, readonly) NSInteger uploadTimeoutSeconds; +@end + + +@interface PlaudLogConfig (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// Validate current configuration +- (BOOL)validateConfiguration SWIFT_WARN_UNUSED_RESULT; +/// Get configuration description for debugging +- (NSString * _Nonnull)getConfigurationDescription SWIFT_WARN_UNUSED_RESULT; +@end + +@class NSURL; + +/// 加密日志导出器,生成与 Android SDK 兼容的 .plaud 格式 +/// 格式:ChaCha20(ZIP(log files + sdk_info.txt)) +SWIFT_CLASS_NAMED("PlaudLogEncryption") +@interface PlaudLogEncryption : NSObject ++ (NSURL * _Nullable)exportEncryptedLogs SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +/// Log file rotation manager +/// Responsible for unified management of log file switching logic, ensuring immediate switch to new file after upload +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK27PlaudLogFileRotationManager") +@interface PlaudLogFileRotationManager : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudLogFileRotationManager * _Nonnull shared;) ++ (PlaudLogFileRotationManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Force rotate current log file +/// Usually called after successful upload to ensure subsequent logs are written to new file +- (void)forceRotateCurrentLogFile; +/// Check and perform size-based rotation +/// \param filePath Log file path +/// +/// \param additionalSize Size of data to be written +/// +/// +/// returns: +/// Whether rotation was performed +- (BOOL)checkAndRotateIfNeededWithFilePath:(NSString * _Nonnull)filePath additionalSize:(int64_t)additionalSize SWIFT_WARN_UNUSED_RESULT; +/// Get current active log file path +- (NSString * _Nonnull)getCurrentLogFilePath SWIFT_WARN_UNUSED_RESULT; +/// Notify manager that upload is completed, suggest file rotation +- (void)notifyUploadCompleted; +@end + +typedef SWIFT_ENUM(NSInteger, PlaudLogUploadError, open) { + PlaudLogUploadErrorAlreadyUploading = 0, + PlaudLogUploadErrorDirectoryNotFound = 1, + PlaudLogUploadErrorPartialUpload = 2, +}; +static NSString * _Nonnull const PlaudLogUploadErrorDomain = @"PlaudDeviceBasicSDK.PlaudLogUploadError"; + + +/// Log upload manager for automatic periodic upload and management +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK21PlaudLogUploadManager") +@interface PlaudLogUploadManager : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudLogUploadManager * _Nonnull shared;) ++ (PlaudLogUploadManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Enable or disable automatic log upload +/// \param enabled true to enable auto upload, false to disable +/// +- (void)setAutoUploadEnabled:(BOOL)enabled; +/// Start automatic log upload timer +- (void)startAutoUpload; +/// Stop automatic log upload timer +- (void)stopAutoUpload; +/// Upload log files with progress tracking +/// \param onProgress Progress callback (0.0 to 1.0) +/// +/// \param onSuccess Success callback with upload results +/// +/// \param onFailure Failure callback with error +/// +- (void)uploadLogFilesOnProgress:(void (^ _Nonnull)(double))onProgress onSuccess:(void (^ _Nonnull)(NSDictionary * _Nonnull))onSuccess onFailure:(void (^ _Nonnull)(NSError * _Nonnull))onFailure; +/// Manually trigger log cleanup +- (void)cleanupLogFiles; +/// Get upload statistics +/// +/// returns: +/// Dictionary with upload statistics +- (NSDictionary * _Nonnull)getUploadStatistics SWIFT_WARN_UNUSED_RESULT; +/// Upload log files with specific device serial number +/// \param sn Device serial number +/// +/// \param onProgress Progress callback (0.0 to 1.0) +/// +/// \param onSuccess Success callback with upload results +/// +/// \param onFailure Failure callback with error +/// +- (void)uploadLogFilesWithDeviceSNWithSn:(NSString * _Nonnull)sn onProgress:(void (^ _Nonnull)(double))onProgress onSuccess:(void (^ _Nonnull)(NSDictionary * _Nonnull))onSuccess onFailure:(void (^ _Nonnull)(NSError * _Nonnull))onFailure; +/// Upload logs after recording upload completion +/// \param sn Device serial number +/// +/// \param sessionId Session ID +/// +/// \param onCompletion Completion callback +/// +- (void)uploadLogsAfterRecordingWithSn:(NSString * _Nonnull)sn sessionId:(NSInteger)sessionId onCompletion:(void (^ _Nonnull)(BOOL, NSError * _Nullable))onCompletion; +@end + + +/// PCM 文件播放器 - 直接播放 PCM 文件,避免 MP3 转换引入的噪音 +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudPCMPlayer") +@interface PlaudPCMPlayer : NSObject +@property (nonatomic, readonly) BOOL isPlaying; +@property (nonatomic, readonly) BOOL isPaused; +@property (nonatomic, readonly) NSTimeInterval duration; +@property (nonatomic, readonly) NSTimeInterval currentTime; +@property (nonatomic, copy) void (^ _Nullable onPlaybackFinished)(void); +@property (nonatomic, copy) void (^ _Nullable onError)(NSString * _Nonnull); +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +/// 加载 PCM 文件 +- (BOOL)loadFileWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +/// 播放 +- (void)play; +/// 暂停 +- (void)pause; +/// 停止 +- (void)stop; +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudSDKLogger") +@interface PlaudSDKLogger : NSObject ++ (void)logEvent:(NSString * _Nonnull)eventName parameters:(NSDictionary * _Nullable)parameters; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@protocol PlaudWiFiAgentProtocol; + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudWiFiAgent") +@interface PlaudWiFiAgent : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudWiFiAgent * _Nonnull shared;) ++ (PlaudWiFiAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +@property (nonatomic, weak) id _Nullable delegate; +/// Device information needs to be passed from Bluetooth module +@property (nonatomic, strong) BleDevice * _Nullable bleDevice; +/// Whether currently downloading file +@property (nonatomic, readonly) BOOL isDownloading; +/// Current sync file sessionId +@property (nonatomic, readonly) NSInteger currentSessionId; +/// Whether connection has been established +@property (nonatomic, readonly) BOOL isConnected; +/// Get current download speed (KB/s) +@property (nonatomic, readonly) double currentDownloadSpeedKBps; +/// Get formatted download speed string +- (NSString * _Nonnull)getFormattedDownloadSpeed SWIFT_WARN_UNUSED_RESULT; +/// Whether currently batch downloading +@property (nonatomic, readonly) BOOL isDownloadingAll; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Enable SDK debug logs or callback logs +- (void)openLog:(BOOL)opened :(void (^ _Nullable)(NSString * _Nonnull))backBlock; +/// Use this method for iOS 11.0 and below, will loop to check if connected to specified WiFi until timeout +/// \param ssid WiFi name +/// +/// \param overtimeSec Timeout duration, default 30 seconds +/// +- (void)listenPort:(NSString * _Nonnull)ssid :(NSInteger)overtimeSec; +/// Connect to specified WiFi using WiFi name and password +/// iOS 11.0 and above use this method for direct WiFi connection, earlier versions need popup to guide user to settings for manual connection +/// \param ssid WiFi name +/// +/// \param passphrase Password +/// +/// \param overtimeSec Timeout duration, default 60 seconds +/// +- (void)connectWifi:(NSString * _Nonnull)ssid :(NSString * _Nonnull)passphrase :(NSInteger)overtimeSec SWIFT_AVAILABILITY(ios,introduced=11.0); +/// Disconnect +- (void)disconnect; +/// Check if currently connected to specified WiFi +/// \param ssid WiFi name +/// +/// +/// returns: +/// Whether connected +- (BOOL)isConnectedTo:(NSString * _Nonnull)ssid SWIFT_WARN_UNUSED_RESULT; +/// Get current connection status description +/// +/// returns: +/// Connection status description +- (NSString * _Nonnull)getConnectionStatusDescription SWIFT_WARN_UNUSED_RESULT; +/// Get current connected WiFi name +- (NSString * _Nullable)getCurrentWiFiName SWIFT_WARN_UNUSED_RESULT; +/// Get file list (app initiated cmd=11) +/// \param uid Request uid, new requests will naturally override old requests +/// +/// \param sessionId Starting sessionId +/// +/// \param single Whether to only get current file information, default false +/// +- (void)getFileList:(NSInteger)uid :(NSInteger)sessionId :(BOOL)single; +/// File sync (cmd=12) +/// \param sessionId Recording ID +/// +/// \param start Start position (file offset, not time) +/// +/// \param end End position (default 0, to end of file) +/// +/// \param scene Recording scene, default 1 +/// +- (void)syncFile:(NSInteger)sessionId :(NSInteger)start :(NSInteger)end :(NSInteger)scene; +/// Stop file sync (cmd=15) +/// \param sessionId Recording ID +/// +/// \param scene Scene, default 1 +/// +- (void)stopSyncFile:(NSInteger)sessionId :(NSInteger)scene; +/// Delete file (cmd=14) +/// \param sessionId Recording ID +/// +/// \param scene Scene, default 1 +/// +- (void)deleteFile:(NSInteger)sessionId :(NSInteger)scene; +/// Start downloading all files +/// First get file list, then download one by one +- (void)startDownloadAll; +/// Stop downloading all files +- (void)stopDownloadAll; +/// Rate test (cmd=100) +/// \param onOff Start or end +/// +/// \param packSize Test package size +/// +- (void)startRateTest:(BOOL)onOff :(NSInteger)packSize; +/// Pen-side log retrieval (cmd=101) +/// \param begin Start or end +/// +- (void)getDeviceLogs:(BOOL)begin; +/// Whether WebSocket connection has been successfully established (prerequisite for app to send requests) +- (BOOL)isWebSocketConnected SWIFT_WARN_UNUSED_RESULT; +@end + + +@interface PlaudWiFiAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (void)wifiCommonErr:(NSInteger)cmd :(NSInteger)status; +- (void)wifiHandshake:(NSInteger)status; +- (void)wifiPower:(NSInteger)power :(NSInteger)voltage; +- (void)wifiFileListFail:(NSInteger)status; +- (void)wifiFileList:(NSArray * _Nonnull)files; +- (void)wifiSyncFile:(NSInteger)sessionId :(NSInteger)status; +- (void)wifiSyncFileData:(NSInteger)sessionId :(NSInteger)offset :(NSInteger)count :(NSData * _Nonnull)binData; +- (void)wifiDataComplete; +- (void)wifiSyncFileStop:(NSInteger)status; +- (void)wifiFileDelete:(NSInteger)sessionId :(NSInteger)status; +- (void)wifiClientFail; +- (void)wifiClose:(NSInteger)status; +- (void)wifiRateFail:(NSInteger)status; +- (void)wifiRate:(NSInteger)instantRate :(NSInteger)averageRate :(double)lossRate; +- (void)wifiLogsFail:(NSInteger)status; +- (void)wifiLogs:(NSData * _Nullable)logData; +- (void)wifiTips:(NSInteger)tips; +- (void)penRequestOTADataWithStart:(NSInteger)start end:(NSInteger)end payloadSize:(NSInteger)payloadSize uid:(NSInteger)uid sendRatePPS:(NSInteger)sendRatePPS; +- (void)wifiOTAStatus:(NSInteger)status :(NSInteger)uid; +@end + + +SWIFT_PROTOCOL("_TtP19PlaudDeviceBasicSDK22PlaudWiFiAgentProtocol_") +@protocol PlaudWiFiAgentProtocol +@optional +/// Common error +/// \param cmd Error command +/// +/// \param status Error code +/// +- (void)wifiCommonErr:(NSInteger)cmd :(NSInteger)status; +/// Handshake result +/// \param status 0 success, others failure +/// +- (void)wifiHandshake:(NSInteger)status; +/// WiFi connection status change +/// \param ssid WiFi name +/// +/// \param connected Whether connection succeeded +/// +- (void)wifiConnectionStatus:(NSString * _Nonnull)ssid :(BOOL)connected; +/// Battery level and voltage +/// \param power Battery level, percentage +/// +/// \param voltage Battery voltage, mv +/// +- (void)wifiPower:(NSInteger)power :(NSInteger)voltage; +/// Failed to get recording list +/// \param status Error code +/// +- (void)wifiFileListFail:(NSInteger)status; +/// Get recording list +/// \param files Recording list +/// +- (void)wifiFileList:(NSArray * _Nonnull)files; +/// File sync–file status +/// \param sessionId Recording ID +/// +/// \param status Status +/// +- (void)wifiSyncFile:(NSInteger)sessionId :(NSInteger)status; +/// File sync–file data +/// \param sessionId Recording ID +/// +/// \param offset File offset (bytes) +/// +/// \param count File length (bytes) +/// +/// \param binData Data +/// +- (void)wifiSyncFileData:(NSInteger)sessionId :(NSInteger)offset :(NSInteger)count :(NSData * _Nonnull)binData; +/// A file download completed +- (void)wifiDataComplete; +/// File sync stop +/// \param status Status 0 success +/// +- (void)wifiSyncFileStop:(NSInteger)status; +/// File deletion result +/// \param sessionId Recording ID +/// +/// \param status Deletion result 0 success, >0 failure reason +/// +- (void)wifiFileDelete:(NSInteger)sessionId :(NSInteger)status; +/// Client exception disconnect, waiting for reconnection +/// Please set BleAgent.shared.setWiFiState(false) +- (void)wifiClientFail; +/// WiFi close notification +/// \param status Status -1 is didFailWithError; -2 is timeout not connected; -3 NEHotspotConfigurationManager direct connection exception +/// +- (void)wifiClose:(NSInteger)status; +/// Rate test failed +/// \param status Error code +/// +- (void)wifiRateFail:(NSInteger)status; +/// Rate test +/// \param instantRate Instantaneous rate +/// +/// \param averageRate Average rate +/// +/// \param lossRate Packet loss rate +/// +- (void)wifiRate:(NSInteger)instantRate :(NSInteger)averageRate :(double)lossRate; +/// Failed to get pen-side logs +/// \param status Error code +/// +- (void)wifiLogsFail:(NSInteger)status; +/// Pen-side logs +/// \param logData Log data +/// +- (void)wifiLogs:(NSData * _Nullable)logData; +/// Pen sends tips to app +/// \param tips 0 no tip, 1 pen recording key pressed +/// +- (void)wifiTips:(NSInteger)tips; +/// Batch download progress callback +/// \param totalFiles Total number of files +/// +/// \param currentFileIndex Current file index (starting from 1) +/// +/// \param currentFile Currently downloading file +/// +/// \param totalProgress Overall download progress (0.0-1.0) +/// +- (void)wifiDownloadAllProgress:(NSInteger)totalFiles :(NSInteger)currentFileIndex :(BleFile * _Nullable)currentFile :(double)totalProgress; +/// Batch download completed +/// \param completedFiles Number of completed files +/// +/// \param failedFiles Number of failed files +/// +- (void)wifiDownloadAllCompleted:(NSInteger)completedFiles :(NSInteger)failedFiles; +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK19PlaudWifiAddingPage") +@interface PlaudWifiAddingPage : UIViewController +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +- (void)viewDidLoad; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE; +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK20PlaudWifiSettingPage") +@interface PlaudWifiSettingPage : UIViewController +- (void)bleAppKeyStateWithResult:(NSInteger)_; +- (void)onWifiSyncUrlWithUrl:(NSString * _Nonnull)url; +- (void)blePenStateWithState:(NSInteger)_ privacy:(NSInteger)_ keyState:(NSInteger)_ uDisk:(NSInteger)_ findMyToken:(NSInteger)_ hasSndpKey:(NSInteger)_ deviceAccessToken:(NSInteger)_; +- (void)bleConnectStateWithState:(NSInteger)state; +- (void)onWifiSyncEnabled:(NSInteger)value; +- (void)onWifiSyncListReceivedWithList:(NSArray * _Nonnull)list; +- (void)onWifiSyncConfigReceivedWithIndex:(uint32_t)index ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password; +- (void)onWifiSyncConfigSetWithResult:(NSInteger)result; +- (void)onWifiSyncDeleteResultWithResult:(NSInteger)_; +- (void)onWifiSyncTestResultWithIndex:(uint32_t)index result:(NSInteger)result rawCode:(NSInteger)_; +/// WiFi RSSI measurement request confirmed callback +- (void)onWifiRssiRequestConfirmedWithStatus:(NSInteger)status; +- (void)viewDidLoad; +- (void)observeValueForKeyPath:(NSString * _Nullable)keyPath ofObject:(id _Nullable)object change:(NSDictionary * _Nullable)_ context:(void * _Nullable)_; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +@interface PlaudWifiSettingPage (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (NSInteger)tableView:(UITableView * _Nonnull)_ numberOfRowsInSection:(NSInteger)_ SWIFT_WARN_UNUSED_RESULT; +- (CGFloat)tableView:(UITableView * _Nonnull)_ heightForRowAtIndexPath:(NSIndexPath * _Nonnull)_ SWIFT_WARN_UNUSED_RESULT; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +@end + + +/// // a base class of vc to write bottom view +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK15PresentBottomVC") +@interface PresentBottomVC : UIViewController +- (void)viewDidLoad; +- (void)viewDidDisappear:(BOOL)animated; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK9TestAgent") +@interface TestAgent : NSObject +/// Singleton +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) TestAgent * _Nonnull shared;) ++ (TestAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Whether device is connected (WiFi or Bluetooth) +- (NSString * _Nonnull)testFunc SWIFT_WARN_UNUSED_RESULT; +@end + + + + + + + + + + + + + + + + + + + + + + + + + + +@class UIPresentationController; + +@interface UIViewController (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (UIPresentationController * _Nullable)presentationControllerForPresentedViewController:(UIViewController * _Nonnull)presented presentingViewController:(UIViewController * _Nullable)presenting sourceViewController:(UIViewController * _Nonnull)source SWIFT_WARN_UNUSED_RESULT; +@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/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK.h b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK.h new file mode 100644 index 0000000..74980a0 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK.h @@ -0,0 +1,22 @@ +// +// PlaudDeviceBasicSDK.h +// PlaudDeviceBasicSDK +// +// Created by Xiong on 2025/4/28. +// Copyright © 2025 NiceBuild. All rights reserved. +// + +#import + +//! Project version number for PlaudDeviceBasicSDK. +FOUNDATION_EXPORT double PlaudDeviceBasicSDKVersionNumber; + +//! Project version string for PlaudDeviceBasicSDK. +FOUNDATION_EXPORT const unsigned char PlaudDeviceBasicSDKVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + +#import +#import + +//#import diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudLogRedirect.h b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudLogRedirect.h new file mode 100644 index 0000000..21eacb6 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudLogRedirect.h @@ -0,0 +1,69 @@ +// +// PlaudLogRedirect.h +// PlaudSDK +// +// Created by Plaud Team on 2024/12/19. +// Copyright © 2024 Plaud. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/// Macro definition for redirecting NSLog to file +/// Usage: #import "PlaudLogRedirect.h" in files that need redirection +/// Then use PLAUD_NSLOG(@"message") instead of NSLog(@"message") +/// Note: This macro outputs to both console and saves to file + +#define PLAUD_NSLOG(format, ...) \ + do { \ + NSString *message = [NSString stringWithFormat:format, ##__VA_ARGS__]; \ + NSLog(@"%@", message); \ + [PlaudLogRedirect saveNSLogToFile:message]; \ + } while(0) + +/// Log redirection manager +@interface PlaudLogRedirect : NSObject + +/// Save NSLog message to file +/// @param message Log message ++ (void)saveNSLogToFile:(NSString *)message; + +/// Add a log entry from the host app to the unified SDK log file. +/// Use this method to contribute application-level logs for diagnostics. +/// @param message Log message ++ (void)addLog:(NSString *)message; + +/// Add a log entry with a custom level tag. +/// @param message Log message +/// @param level Log level tag (e.g., "INFO", "ERROR", "WIFI", "BLE") ++ (void)addLog:(NSString *)message level:(NSString *)level; + +/// Get all log file paths +/// @return Array of log file paths ++ (NSArray *)getAllLogFilePaths; + +/// Get current log file path +/// @return Current log file path ++ (NSString *)getCurrentLogFilePath; + +/// Export encrypted .plaud log file for sharing via UIActivityViewController. +/// The .plaud format is a ChaCha20-encrypted ZIP archive containing all log files and SDK info, +/// compatible with the Android SDK's .plaud format. +/// @return File URL of the .plaud file, or nil on failure ++ (nullable NSURL *)exportEncryptedLogFile; + +/// Manually clean up old/excess log files (rotation) ++ (void)cleanupLogFiles; + +/// Delete all log files (e.g., after successful export) ++ (void)deleteAllLogFiles; + +/// Export log files to specified directory +/// @param destinationPath Target directory path +/// @param completion Completion callback ++ (void)exportLogFilesToPath:(NSString *)destinationPath completion:(void(^)(BOOL success, NSError * _Nullable error))completion; + +@end + +NS_ASSUME_NONNULL_END diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PrintManager.h b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PrintManager.h new file mode 100644 index 0000000..3ea1642 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PrintManager.h @@ -0,0 +1,12 @@ + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface PrintManager : NSObject + ++ (void)printMenthod; + +@end + +NS_ASSUME_NONNULL_END diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Info.plist b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Info.plist new file mode 100644 index 0000000..063499b Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Info.plist differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo new file mode 100644 index 0000000..a485286 Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..d3d2d24 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,75120 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "PlaudDeviceBasicSDK", + "printedName": "PlaudDeviceBasicSDK", + "children": [ + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudWifiAddingPage", + "printedName": "PlaudWifiAddingPage", + "children": [ + { + "kind": "Var", + "name": "completion", + "printedName": "completion", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiInfo", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "Preconcurrency", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiInfo", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiInfo", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvs", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isEditing:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiAddingPage", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiAddingPage", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC9isEditingACSb_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC9isEditingACSb_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage(im)viewDidLoad", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC11viewDidLoadyyF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setWifiInfo", + "printedName": "setWifiInfo(name:password:wifiIndex:isConnected:)", + "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": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC03setE4Info4name8password9wifiIndex11isConnectedySS_SSs6UInt32VSgSbtF", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC03setE4Info4name8password9wifiIndex11isConnectedySS_SSs6UInt32VSgSbtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiAddingPage", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiAddingPage", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Bundle?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage(im)initWithNibName:bundle:", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudWifiInfo", + "printedName": "PlaudWifiInfo", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:isConnected:index:rssi:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiInfo", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV" + }, + { + "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", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "hasDefaultArg": true, + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV4name8password11isConnected5index4rssiACSS_SSSbs6UInt32Vs5Int32VSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A8WifiInfoV4name8password11isConnected5index4rssiACSS_SSSbs6UInt32Vs5Int32VSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV", + "mangledName": "$s19PlaudDeviceBasicSDK0A8WifiInfoV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "PlaudWifiSettingPage", + "printedName": "PlaudWifiSettingPage", + "children": [ + { + "kind": "Function", + "name": "resetTempTestWifiIndex", + "printedName": "resetTempTestWifiIndex()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WifiSettingPageC013resetTempTestE5IndexyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC013resetTempTestE5IndexyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Preconcurrency", + "Custom", + "Final", + "AccessControl" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)bleAppKeyStateWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC14bleAppKeyState6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAppKeyStateWithResult:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncUrl", + "printedName": "onWifiSyncUrl(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncUrlWithUrl:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE7SyncUrl3urlySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncUrlWithUrl:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blePenState", + "printedName": "blePenState(state:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC11blePenState5state7privacy03keyJ05uDisk11findMyToken10hasSndpKey012deviceAccessQ0ySi_S6itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)bleConnectStateWithState:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC15bleConnectState5stateySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleConnectStateWithState:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncEnabled", + "printedName": "onWifiSyncEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE11SyncEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncEnabled:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncListReceived", + "printedName": "onWifiSyncListReceived(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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncListReceivedWithList:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE16SyncListReceived4listySays6UInt32VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncListReceivedWithList:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncConfigReceived", + "printedName": "onWifiSyncConfigReceived(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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncConfigReceivedWithIndex:ssid:password:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE18SyncConfigReceived5index4ssid8passwordys6UInt32V_S2StF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncConfigReceivedWithIndex:ssid:password:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncConfigSet", + "printedName": "onWifiSyncConfigSet(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncConfigSetWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE13SyncConfigSet6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncConfigSetWithResult:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncDeleteResult", + "printedName": "onWifiSyncDeleteResult(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncDeleteResultWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE16SyncDeleteResult6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncDeleteResultWithResult:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncTestResult", + "printedName": "onWifiSyncTestResult(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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncTestResultWithIndex:result:rawCode:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE14SyncTestResult5index6result7rawCodeys6UInt32V_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncTestResultWithIndex:result:rawCode:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiTestTips", + "printedName": "getWifiTestTips(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WifiSettingPageC03getE8TestTips6resultSSSi_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC03getE8TestTips6resultSSSi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiRssiRequestConfirmed", + "printedName": "onWifiRssiRequestConfirmed(status:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiRssiRequestConfirmedWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE20RssiRequestConfirmed6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiRssiRequestConfirmedWithStatus:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)viewDidLoad", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC11viewDidLoadyyF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observeValue", + "printedName": "observeValue(forKeyPath:of:change:context:)", + "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": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "NSKeyValueChangeKey", + "printedName": "Foundation.NSKeyValueChangeKey", + "usr": "c:@T@NSKeyValueChangeKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutableRawPointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)observeValueForKeyPath:ofObject:change:context:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC12observeValue10forKeyPath2of6change7contextySSSg_ypSgSDySo05NSKeyi6ChangeK0aypGSgSvSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "observeValueForKeyPath:ofObject:change:context:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateWifiListVisibility", + "printedName": "updateWifiListVisibility()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WifiSettingPageC06updateE14ListVisibilityyyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC06updateE14ListVisibilityyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testWifiConnection", + "printedName": "testWifiConnection(ssid:password:wifiIndex:edit:completion:)", + "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": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String)", + "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:19PlaudDeviceBasicSDK0A15WifiSettingPageC04testE10Connection4ssid8password9wifiIndex4edit10completionySS_SSs6UInt32VSgSbySb_SStctFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC04testE10Connection4ssid8password9wifiIndex4edit10completionySS_SSs6UInt32VSgSbySb_SStctFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Preconcurrency", + "Custom", + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiSettingPage", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiSettingPage", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Bundle?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)initWithNibName:bundle:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiSettingPage?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiSettingPage", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiSettingPage", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)initWithCoder:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "tableView", + "printedName": "tableView(_:numberOfRowsInSection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UITableView", + "printedName": "UIKit.UITableView", + "usr": "c:objc(cs)UITableView" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)tableView:numberOfRowsInSection:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC9tableView_21numberOfRowsInSectionSiSo07UITableI0C_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "tableView:numberOfRowsInSection:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "tableView", + "printedName": "tableView(_:heightForRowAt:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "UITableView", + "printedName": "UIKit.UITableView", + "usr": "c:objc(cs)UITableView" + }, + { + "kind": "TypeNominal", + "name": "IndexPath", + "printedName": "Foundation.IndexPath", + "usr": "s:10Foundation9IndexPathV" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)tableView:heightForRowAtIndexPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC9tableView_14heightForRowAt12CoreGraphics7CGFloatVSo07UITableI0C_10Foundation9IndexPathVtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "tableView:heightForRowAtIndexPath:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "tableView", + "printedName": "tableView(_:cellForRowAt:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UITableViewCell", + "printedName": "UIKit.UITableViewCell", + "usr": "c:objc(cs)UITableViewCell" + }, + { + "kind": "TypeNominal", + "name": "UITableView", + "printedName": "UIKit.UITableView", + "usr": "c:objc(cs)UITableView" + }, + { + "kind": "TypeNominal", + "name": "IndexPath", + "printedName": "Foundation.IndexPath", + "usr": "s:10Foundation9IndexPathV" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)tableView:cellForRowAtIndexPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC9tableView_12cellForRowAtSo07UITableI4CellCSo0nI0C_10Foundation9IndexPathVtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "tableView:cellForRowAtIndexPath:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "tableView", + "printedName": "tableView(_:didSelectRowAt:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UITableView", + "printedName": "UIKit.UITableView", + "usr": "c:objc(cs)UITableView" + }, + { + "kind": "TypeNominal", + "name": "IndexPath", + "printedName": "Foundation.IndexPath", + "usr": "s:10Foundation9IndexPathV" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)tableView:didSelectRowAtIndexPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC9tableView_14didSelectRowAtySo07UITableI0C_10Foundation9IndexPathVtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "tableView:didSelectRowAtIndexPath:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "PlaudDeviceAgentProtocol", + "printedName": "PlaudDeviceAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP" + }, + { + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Model", + "printedName": "Model", + "children": [ + { + "kind": "Var", + "name": "simulator", + "printedName": "simulator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9simulatoryA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9simulatoryA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod1", + "printedName": "iPod1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod1yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod1yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod2", + "printedName": "iPod2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod3", + "printedName": "iPod3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod4", + "printedName": "iPod4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod5", + "printedName": "iPod5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod6", + "printedName": "iPod6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod7", + "printedName": "iPod7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad2", + "printedName": "iPad2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad3", + "printedName": "iPad3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad4", + "printedName": "iPad4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir", + "printedName": "iPadAir", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPadAiryA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPadAiryA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir2", + "printedName": "iPadAir2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadAir2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadAir2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir3", + "printedName": "iPadAir3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadAir3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadAir3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir4", + "printedName": "iPadAir4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadAir4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadAir4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir5", + "printedName": "iPadAir5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadAir5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadAir5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad5", + "printedName": "iPad5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad6", + "printedName": "iPad6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad7", + "printedName": "iPad7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad8", + "printedName": "iPad8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad8yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad8yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad9", + "printedName": "iPad9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini", + "printedName": "iPadMini", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadMiniyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadMiniyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini2", + "printedName": "iPadMini2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini3", + "printedName": "iPadMini3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini4", + "printedName": "iPadMini4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini5", + "printedName": "iPadMini5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini6", + "printedName": "iPadMini6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro9_7", + "printedName": "iPadPro9_7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO10iPadPro9_7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO10iPadPro9_7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro10_5", + "printedName": "iPadPro10_5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPadPro10_5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPadPro10_5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro11", + "printedName": "iPadPro11", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadPro11yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadPro11yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro2_11", + "printedName": "iPadPro2_11", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPadPro2_11yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPadPro2_11yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro3_11", + "printedName": "iPadPro3_11", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPadPro3_11yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPadPro3_11yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro12_9", + "printedName": "iPadPro12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPadPro12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPadPro12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro2_12_9", + "printedName": "iPadPro2_12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO13iPadPro2_12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO13iPadPro2_12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro3_12_9", + "printedName": "iPadPro3_12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO13iPadPro3_12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO13iPadPro3_12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro4_12_9", + "printedName": "iPadPro4_12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO13iPadPro4_12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO13iPadPro4_12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro5_12_9", + "printedName": "iPadPro5_12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO13iPadPro5_12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO13iPadPro5_12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone4", + "printedName": "iPhone4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone4S", + "printedName": "iPhone4S", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone4SyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone4SyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone5", + "printedName": "iPhone5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone5S", + "printedName": "iPhone5S", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone5SyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone5SyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone5C", + "printedName": "iPhone5C", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone5CyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone5CyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone6", + "printedName": "iPhone6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone6Plus", + "printedName": "iPhone6Plus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone6PlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone6PlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone6S", + "printedName": "iPhone6S", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone6SyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone6SyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone6SPlus", + "printedName": "iPhone6SPlus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12iPhone6SPlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12iPhone6SPlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneSE", + "printedName": "iPhoneSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhoneSEyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhoneSEyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone7", + "printedName": "iPhone7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone7Plus", + "printedName": "iPhone7Plus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone7PlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone7PlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone8", + "printedName": "iPhone8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone8yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone8yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone8Plus", + "printedName": "iPhone8Plus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone8PlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone8PlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneX", + "printedName": "iPhoneX", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhoneXyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhoneXyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneXS", + "printedName": "iPhoneXS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhoneXSyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhoneXSyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneXSMax", + "printedName": "iPhoneXSMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhoneXSMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhoneXSMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneXR", + "printedName": "iPhoneXR", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhoneXRyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhoneXRyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone11", + "printedName": "iPhone11", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone11yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone11yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone11Pro", + "printedName": "iPhone11Pro", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone11ProyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone11ProyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone11ProMax", + "printedName": "iPhone11ProMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO14iPhone11ProMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO14iPhone11ProMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneSE2", + "printedName": "iPhoneSE2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPhoneSE2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPhoneSE2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone12Mini", + "printedName": "iPhone12Mini", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12iPhone12MiniyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12iPhone12MiniyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone12", + "printedName": "iPhone12", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone12yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone12yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone12Pro", + "printedName": "iPhone12Pro", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone12ProyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone12ProyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone12ProMax", + "printedName": "iPhone12ProMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO14iPhone12ProMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO14iPhone12ProMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone13Mini", + "printedName": "iPhone13Mini", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12iPhone13MiniyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12iPhone13MiniyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone13", + "printedName": "iPhone13", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone13yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone13yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone13Pro", + "printedName": "iPhone13Pro", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone13ProyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone13ProyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone13ProMax", + "printedName": "iPhone13ProMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO14iPhone13ProMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO14iPhone13ProMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneSE3", + "printedName": "iPhoneSE3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPhoneSE3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPhoneSE3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone14", + "printedName": "iPhone14", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone14yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone14yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone14Plus", + "printedName": "iPhone14Plus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12iPhone14PlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12iPhone14PlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone14Pro", + "printedName": "iPhone14Pro", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone14ProyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone14ProyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone14ProMax", + "printedName": "iPhone14ProMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO14iPhone14ProMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO14iPhone14ProMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatch1", + "printedName": "AppleWatch1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11AppleWatch1yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11AppleWatch1yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS1", + "printedName": "AppleWatchS1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS1yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS1yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS2", + "printedName": "AppleWatchS2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS3", + "printedName": "AppleWatchS3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS4", + "printedName": "AppleWatchS4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS5", + "printedName": "AppleWatchS5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchSE", + "printedName": "AppleWatchSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchSEyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchSEyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS6", + "printedName": "AppleWatchS6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS7", + "printedName": "AppleWatchS7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV1", + "printedName": "AppleTV1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8AppleTV1yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8AppleTV1yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV2", + "printedName": "AppleTV2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8AppleTV2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8AppleTV2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV3", + "printedName": "AppleTV3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8AppleTV3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8AppleTV3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV4", + "printedName": "AppleTV4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8AppleTV4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8AppleTV4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV_4K", + "printedName": "AppleTV_4K", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO10AppleTV_4KyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO10AppleTV_4KyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV2_4K", + "printedName": "AppleTV2_4K", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11AppleTV2_4KyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11AppleTV2_4KyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unrecognized", + "printedName": "unrecognized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12unrecognizedyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12unrecognizedyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.Model?", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8rawValueACSgSS_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8rawValueACSgSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK5ModelO8rawValueSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8rawValueSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8rawValueSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8rawValueSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK5ModelO", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PresentBottomVCProtocol", + "printedName": "PresentBottomVCProtocol", + "children": [ + { + "kind": "Var", + "name": "controllerHeight", + "printedName": "controllerHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23PresentBottomVCProtocolP16controllerHeight14CoreFoundation7CGFloatVvp", + "mangledName": "$s19PlaudDeviceBasicSDK23PresentBottomVCProtocolP16controllerHeight12CoreGraphics7CGFloatVvp", + "moduleName": "PlaudDeviceBasicSDK", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23PresentBottomVCProtocolP16controllerHeight14CoreFoundation7CGFloatVvg", + "mangledName": "$s19PlaudDeviceBasicSDK23PresentBottomVCProtocolP16controllerHeight12CoreGraphics7CGFloatVvg", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PresentBottomVCProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK23PresentBottomVCProtocolP", + "mangledName": "$s19PlaudDeviceBasicSDK23PresentBottomVCProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "PresentBottomVC", + "printedName": "PresentBottomVC", + "children": [ + { + "kind": "Var", + "name": "controllerHeight", + "printedName": "controllerHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15PresentBottomVCC16controllerHeight14CoreFoundation7CGFloatVvp", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC16controllerHeight12CoreGraphics7CGFloatVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15PresentBottomVCC16controllerHeight14CoreFoundation7CGFloatVvg", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC16controllerHeight12CoreGraphics7CGFloatVvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC(im)viewDidLoad", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC11viewDidLoadyyF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewDidDisappear", + "printedName": "viewDidDisappear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC(im)viewDidDisappear:", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC16viewDidDisappearyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidDisappear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PresentBottomVC", + "printedName": "PlaudDeviceBasicSDK.PresentBottomVC", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Bundle?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC(im)initWithNibName:bundle:", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PresentBottomVC?", + "children": [ + { + "kind": "TypeNominal", + "name": "PresentBottomVC", + "printedName": "PlaudDeviceBasicSDK.PresentBottomVC", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC(im)initWithCoder:", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "PresentBottomVCProtocol", + "printedName": "PresentBottomVCProtocol", + "usr": "s:19PlaudDeviceBasicSDK23PresentBottomVCProtocolP", + "mangledName": "$s19PlaudDeviceBasicSDK23PresentBottomVCProtocolP" + }, + { + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "PresentBottomHideKey", + "printedName": "PresentBottomHideKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK20PresentBottomHideKeySSvp", + "mangledName": "$s19PlaudDeviceBasicSDK20PresentBottomHideKeySSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK20PresentBottomHideKeySSvg", + "mangledName": "$s19PlaudDeviceBasicSDK20PresentBottomHideKeySSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "MediaPlayer", + "printedName": "MediaPlayer", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "WaveProtocol", + "printedName": "WaveProtocol", + "children": [ + { + "kind": "Function", + "name": "onTimeChange", + "printedName": "onTimeChange(millisec:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK12WaveProtocolP12onTimeChange8millisec3endySi_SbtF", + "mangledName": "$s19PlaudDeviceBasicSDK12WaveProtocolP12onTimeChange8millisec3endySi_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.WaveProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK12WaveProtocolP", + "mangledName": "$s19PlaudDeviceBasicSDK12WaveProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "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": "JXWaveformProtocol", + "printedName": "JXWaveformProtocol", + "children": [ + { + "kind": "Function", + "name": "onPlayOrPauseClick", + "printedName": "onPlayOrPauseClick()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP18onPlayOrPauseClickyyF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP18onPlayOrPauseClickyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTimeChange", + "printedName": "onTimeChange(millisec:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP12onTimeChange8millisec3endySi_SbtF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP12onTimeChange8millisec3endySi_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onInfoClick", + "printedName": "onInfoClick()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP11onInfoClickyyF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP11onInfoClickyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onShareClick", + "printedName": "onShareClick()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP12onShareClickyyF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP12onShareClickyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStopRecordClick", + "printedName": "onStopRecordClick()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP17onStopRecordClickyyF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP17onStopRecordClickyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "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": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "MediaPlayer", + "printedName": "MediaPlayer", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "AVKit", + "printedName": "AVKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreTelephony.CTCellularData", + "printedName": "CoreTelephony.CTCellularData", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "MediaPlayer", + "printedName": "MediaPlayer", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreLocation", + "printedName": "CoreLocation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "SoundCategory", + "printedName": "SoundCategory", + "children": [ + { + "kind": "Var", + "name": "ambient", + "printedName": "ambient", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO7ambientyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO7ambientyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "soloAmbient", + "printedName": "soloAmbient", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO11soloAmbientyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO11soloAmbientyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "playback", + "printedName": "playback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO8playbackyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO8playbackyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "record", + "printedName": "record", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO6recordyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO6recordyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "playAndRecord", + "printedName": "playAndRecord", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO13playAndRecordyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO13playAndRecordyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO2eeoiySbAC_ACtFZ", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO2eeoiySbAC_ACtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK13SoundCategoryO9hashValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO9hashValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO9hashValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO9hashValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK13SoundCategoryO4hash4intoys6HasherVz_tF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO4hash4intoys6HasherVz_tF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Sound", + "printedName": "Sound", + "children": [ + { + "kind": "Var", + "name": "playersPerSound", + "printedName": "playersPerSound", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC010playersPerE0SivpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC010playersPerE0SivpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "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:19PlaudDeviceBasicSDK5SoundC010playersPerE0SivgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC010playersPerE0SivgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC010playersPerE0SivsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC010playersPerE0SivsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC010playersPerE0SivMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC010playersPerE0SivMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "session", + "printedName": "session", + "children": [ + { + "kind": "TypeNominal", + "name": "Session", + "printedName": "any PlaudDeviceBasicSDK.Session", + "usr": "s:19PlaudDeviceBasicSDK7SessionP" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Session", + "printedName": "any PlaudDeviceBasicSDK.Session", + "usr": "s:19PlaudDeviceBasicSDK7SessionP" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Session", + "printedName": "any PlaudDeviceBasicSDK.Session", + "usr": "s:19PlaudDeviceBasicSDK7SessionP" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "category", + "printedName": "category", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7enabledSbvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7enabledSbvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "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:19PlaudDeviceBasicSDK5SoundC7enabledSbvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7enabledSbvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:19PlaudDeviceBasicSDK5SoundC7enabledSbvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7enabledSbvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7enabledSbvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7enabledSbvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "playerClass", + "printedName": "playerClass", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "any PlaudDeviceBasicSDK.Player.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Player", + "printedName": "PlaudDeviceBasicSDK.Player", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "any PlaudDeviceBasicSDK.Player.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Player", + "printedName": "PlaudDeviceBasicSDK.Player", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "any PlaudDeviceBasicSDK.Player.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Player", + "printedName": "PlaudDeviceBasicSDK.Player", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "soundsBundle", + "printedName": "soundsBundle", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.Sound?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sound", + "printedName": "PlaudDeviceBasicSDK.Sound", + "usr": "s:19PlaudDeviceBasicSDK5SoundC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC3urlACSg10Foundation3URLV_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC3urlACSg10Foundation3URLV_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "play", + "printedName": "play(numberOfLoops:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4play13numberOfLoops10completionSbSi_ySbcSgtF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4play13numberOfLoops10completionSbSi_ySbcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4stopyyF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4stopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC5pauseyyF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC5pauseyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6resumeSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6resumeSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "playing", + "printedName": "playing", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7playingSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7playingSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7playingSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7playingSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paused", + "printedName": "paused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6pausedSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6pausedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6pausedSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6pausedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "prepare", + "printedName": "prepare()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7prepareSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7prepareSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "play", + "printedName": "play(file:fileExtension:numberOfLoops:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4play4file0G9Extension13numberOfLoopsSbSS_SSSgSitFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4play4file0G9Extension13numberOfLoopsSbSS_SSSgSitFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "play", + "printedName": "play(url:numberOfLoops:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4play3url13numberOfLoopsSb10Foundation3URLV_SitFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4play3url13numberOfLoopsSb10Foundation3URLV_SitFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4stop3fory10Foundation3URLV_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4stop3fory10Foundation3URLV_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8durationSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8durationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8durationSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8durationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "volume", + "printedName": "volume", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6volumeSfvp", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6volumeSfvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6volumeSfvg", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6volumeSfvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6volumeSfvs", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6volumeSfvs", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6volumeSfvM", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6volumeSfvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(file:fileExtension:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4stop4file0G9ExtensionySS_SSSgtFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4stop4file0G9ExtensionySS_SSSgtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopAll", + "printedName": "stopAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7stopAllyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7stopAllyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK5SoundC", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC", + "moduleName": "PlaudDeviceBasicSDK", + "isOpen": true, + "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": "TypeDecl", + "name": "Player", + "printedName": "Player", + "children": [ + { + "kind": "Function", + "name": "play", + "printedName": "play(numberOfLoops:completion:)", + "children": [ + { + "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.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP4play13numberOfLoops10completionSbSi_ySbcSgtF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP4play13numberOfLoops10completionSbSi_ySbcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP4stopyyF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP4stopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP5pauseyyF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP5pauseyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6resumeyyF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6resumeyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "prepareToPlay", + "printedName": "prepareToPlay()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP13prepareToPlaySbyF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP13prepareToPlaySbyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(contentsOf:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP10contentsOfx10Foundation3URLV_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP10contentsOfx10Foundation3URLV_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP8durationSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP8durationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP8durationSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP8durationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "volume", + "printedName": "volume", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6volumeSfvp", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6volumeSfvp", + "moduleName": "PlaudDeviceBasicSDK", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6volumeSfvg", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6volumeSfvg", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6volumeSfvs", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6volumeSfvs", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6volumeSfvM", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6volumeSfvM", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isPlaying", + "printedName": "isPlaying", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP9isPlayingSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP9isPlayingSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP9isPlayingSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP9isPlayingSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "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": "Session", + "printedName": "Session", + "children": [ + { + "kind": "Function", + "name": "setCategory", + "printedName": "setCategory(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Category", + "printedName": "AVFAudio.AVAudioSession.Category", + "usr": "c:@T@AVAudioSessionCategory" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK7SessionP11setCategoryyySo07AVAudioeG0aKF", + "mangledName": "$s19PlaudDeviceBasicSDK7SessionP11setCategoryyySo07AVAudioeG0aKF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Session>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK7SessionP", + "mangledName": "$s19PlaudDeviceBasicSDK7SessionP", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "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": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudAudioPlayerViewController", + "printedName": "PlaudAudioPlayerViewController", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sessionId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudAudioPlayerViewController", + "printedName": "PlaudDeviceBasicSDK.PlaudAudioPlayerViewController", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)initWithSessionId:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC9sessionIdACSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "initWithSessionId:", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)viewDidLoad", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC11viewDidLoadyyF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewWillDisappear", + "printedName": "viewWillDisappear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)viewWillDisappear:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC17viewWillDisappearyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewWillDisappear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerDidFinishPlaying", + "printedName": "audioPlayerDidFinishPlaying(_:successfully:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)audioPlayerDidFinishPlaying:successfully:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC05audioF16DidFinishPlaying_12successfullyySo07AVAudioF0C_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerDidFinishPlaying:successfully:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerDecodeErrorDidOccur", + "printedName": "audioPlayerDecodeErrorDidOccur(_:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "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:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)audioPlayerDecodeErrorDidOccur:error:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC05audioF19DecodeErrorDidOccur_5errorySo07AVAudioF0C_s0K0_pSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerDecodeErrorDidOccur:error:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerBeginInterruption", + "printedName": "audioPlayerBeginInterruption(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)audioPlayerBeginInterruption:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC05audioF17BeginInterruptionyySo07AVAudioF0CF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerBeginInterruption:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerEndInterruption", + "printedName": "audioPlayerEndInterruption(_:withOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)audioPlayerEndInterruption:withOptions:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC05audioF15EndInterruption_11withOptionsySo07AVAudioF0C_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerEndInterruption:withOptions:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudAudioPlayerViewController", + "printedName": "PlaudDeviceBasicSDK.PlaudAudioPlayerViewController", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Bundle?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)initWithNibName:bundle:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudPCMPlayer", + "printedName": "PlaudPCMPlayer", + "children": [ + { + "kind": "Var", + "name": "isPlaying", + "printedName": "isPlaying", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)isPlaying", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC9isPlayingSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)isPlaying", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC9isPlayingSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isPaused", + "printedName": "isPaused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)isPaused", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8isPausedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)isPaused", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8isPausedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)duration", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8durationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)duration", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8durationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentTime", + "printedName": "currentTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)currentTime", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC11currentTimeSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)currentTime", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC11currentTimeSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "onPlaybackFinished", + "printedName": "onPlaybackFinished", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)onPlaybackFinished", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)onPlaybackFinished", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)setOnPlaybackFinished:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "onError", + "printedName": "onError", + "children": [ + { + "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" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)onError", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "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" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)onError", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)setOnError:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPCMPlayer", + "printedName": "PlaudDeviceBasicSDK.PlaudPCMPlayer", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "loadFile", + "printedName": "loadFile(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@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)loadFileWithPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8loadFile4pathSbSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "loadFileWithPath:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "play", + "printedName": "play()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)play", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC4playyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)pause", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC5pauseyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)stop", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC4stopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "AnyCodable", + "printedName": "AnyCodable", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV5valueypvp", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV5valueypvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV5valueypvg", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV5valueypvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableVyACypcfc", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableVyACypcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudDomainManager", + "printedName": "PlaudDomainManager", + "children": [ + { + "kind": "TypeDecl", + "name": "Region", + "printedName": "Region", + "children": [ + { + "kind": "Var", + "name": "cn", + "printedName": "cn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type) -> PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2cnyA2EmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2cnyA2EmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "us", + "printedName": "us", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type) -> PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2usyA2EmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2usyA2EmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "jp", + "printedName": "jp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type) -> PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2jpyA2EmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2jpyA2EmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region?", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueAESgSS_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueAESgSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.PlaudDomainManager.Region]", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8allCasesSayAEGvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8allCasesSayAEGvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Nonisolated" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.PlaudDomainManager.Region]", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8allCasesSayAEGvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8allCasesSayAEGvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.PlaudDomainManager.Region]", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDomainManager", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6sharedACvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDomainManager", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6sharedACvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setCustomDomain", + "printedName": "setCustomDomain(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC09setCustomE0yySSF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC09setCustomE0yySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAutoLanguageAssociation", + "printedName": "setAutoLanguageAssociation(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC26setAutoLanguageAssociationyySbF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC26setAutoLanguageAssociationyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAutoLanguageAssociationEnabled", + "printedName": "isAutoLanguageAssociationEnabled()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC32isAutoLanguageAssociationEnabledSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC32isAutoLanguageAssociationEnabledSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setRegion", + "printedName": "setRegion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC9setRegionyyAC0H0OF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC9setRegionyyAC0H0OF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setRegionForLanguage", + "printedName": "setRegionForLanguage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC20setRegionForLanguageyySSF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC20setRegionForLanguageyySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentRegion", + "printedName": "getCurrentRegion()", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC16getCurrentRegionAC0I0OyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC16getCurrentRegionAC0I0OyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentDomain", + "printedName": "getCurrentDomain()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC010getCurrentE0SSyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC010getCurrentE0SSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentBaseURL", + "printedName": "getCurrentBaseURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC17getCurrentBaseURLSSyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC17getCurrentBaseURLSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDomain", + "printedName": "getDomain(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC03getE03forSSAC6RegionO_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC03getE03forSSAC6RegionO_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBaseURL", + "printedName": "getBaseURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC10getBaseURL3forSSAC6RegionO_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC10getBaseURL3forSSAC6RegionO_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAPIURL", + "printedName": "buildAPIURL(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4pathS2S_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4pathS2S_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAPIURL", + "printedName": "buildAPIURL(path:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4path3forS2S_AC6RegionOtF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4path3forS2S_AC6RegionOtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAPIURL", + "printedName": "buildAPIURL(path:for:)", + "children": [ + { + "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": "s:19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4path3forS2S_SStF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4path3forS2S_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRegionForCurrentLanguage", + "printedName": "getRegionForCurrentLanguage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC27getRegionForCurrentLanguageAC0H0OyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC27getRegionForCurrentLanguageAC0H0OyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentLanguageCode", + "printedName": "getCurrentLanguageCode()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC22getCurrentLanguageCodeSSyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC22getCurrentLanguageCodeSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudFileUploader", + "printedName": "PlaudFileUploader", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFileUploader", + "printedName": "PlaudDeviceBasicSDK.PlaudFileUploader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFileUploader", + "printedName": "PlaudDeviceBasicSDK.PlaudFileUploader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "device", + "printedName": "device", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(py)device", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(im)device", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(im)setDevice:", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "checkRecordingExist", + "printedName": "checkRecordingExist(sessionId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC19checkRecordingExist9sessionIdSbSi_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC19checkRecordingExist9sessionIdSbSi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDownloadedRecordingPath", + "printedName": "getDownloadedRecordingPath(sessionId:desiredPath:)", + "children": [ + { + "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" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC26getDownloadedRecordingPath9sessionId07desiredJ0SSSi_SStF", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC26getDownloadedRecordingPath9sessionId07desiredJ0SSSi_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadRecording", + "printedName": "uploadRecording(sn:sessionId:duration:onProgress:onSuccess:onFailure:)", + "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": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(im)uploadRecordingWithSn:sessionId:duration:onProgress:onSuccess:onFailure:", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC15uploadRecording2sn9sessionId8duration10onProgress0M7Success0M7FailureySS_SiSdySdcySDySSypGcys5Error_pctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadRecordingWithSn:sessionId:duration:onProgress:onSuccess:onFailure:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadLogFile", + "printedName": "uploadLogFile(filePath:sn:onProgress:onSuccess:onFailure:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(im)uploadLogFileWithFilePath:sn:onProgress:onSuccess:onFailure:", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC09uploadLogE08filePath2sn10onProgress0L7Success0L7FailureySS_SSySdcySDySSypGcys5Error_pctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadLogFileWithFilePath:sn:onProgress:onSuccess:onFailure:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "calculateSnType", + "printedName": "calculateSnType(sn:)", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(cm)calculateSnTypeWithSn:", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC15calculateSnType2snS2S_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "calculateSnTypeWithSn:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindDevice", + "printedName": "bindDevice(ownerId:sn:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<[Swift.String : Any], any Swift.Error>) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[Swift.String : Any], any Swift.Error>", + "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" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC04bindB07ownerId2sn10completionySS_SSys6ResultOySDySSypGs5Error_pGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC04bindB07ownerId2sn10completionySS_SSys6ResultOySDySSypGs5Error_pGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unbindDevice", + "printedName": "unbindDevice(ownerId:sn:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<[Swift.String : Any], any Swift.Error>) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[Swift.String : Any], any Swift.Error>", + "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" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC06unbindB07ownerId2sn10completionySS_SSys6ResultOySDySSypGs5Error_pGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC06unbindB07ownerId2sn10completionySS_SSys6ResultOySDySSypGs5Error_pGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudLocalizationManager", + "printedName": "PlaudLocalizationManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLocalizationManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLocalizationManager", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC6sharedACvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLocalizationManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLocalizationManager", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC6sharedACvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setCustomBundlePath", + "printedName": "setCustomBundlePath(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC19setCustomBundlePathyySSF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC19setCustomBundlePathyySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setLanguage", + "printedName": "setLanguage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC11setLanguageyySSF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC11setLanguageyySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentLanguage", + "printedName": "getCurrentLanguage()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC18getCurrentLanguageSSyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC18getCurrentLanguageSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkSDKBundle", + "printedName": "checkSDKBundle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC14checkSDKBundleSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC14checkSDKBundleSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "localizedString", + "printedName": "localizedString(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC15localizedString3forS2S_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC15localizedString3forS2S_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudLogUploadManager", + "printedName": "PlaudLogUploadManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadManager", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadManager", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setAutoUploadEnabled", + "printedName": "setAutoUploadEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)setAutoUploadEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC07setAutoF7EnabledyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startAutoUpload", + "printedName": "startAutoUpload()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)startAutoUpload", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC09startAutoF0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopAutoUpload", + "printedName": "stopAutoUpload()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)stopAutoUpload", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC08stopAutoF0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadLogFiles", + "printedName": "uploadLogFiles(onProgress:onSuccess:onFailure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)uploadLogFilesOnProgress:onSuccess:onFailure:", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC06uploadE5Files10onProgress0J7Success0J7FailureyySdc_ySDySSypGcys5Error_pctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadLogFilesOnProgress:onSuccess:onFailure:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanupLogFiles", + "printedName": "cleanupLogFiles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)cleanupLogFiles", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC07cleanupE5FilesyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUploadStatistics", + "printedName": "getUploadStatistics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)getUploadStatistics", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC03getF10StatisticsSDySSypGyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadLogFilesWithDeviceSN", + "printedName": "uploadLogFilesWithDeviceSN(sn:onProgress:onSuccess:onFailure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)uploadLogFilesWithDeviceSNWithSn:onProgress:onSuccess:onFailure:", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC06uploade9FilesWithB2SN2sn10onProgress0M7Success0M7FailureySS_ySdcySDySSypGcys5Error_pctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadLogFilesWithDeviceSNWithSn:onProgress:onSuccess:onFailure:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadLogsAfterRecording", + "printedName": "uploadLogsAfterRecording(sn:sessionId:onCompletion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)uploadLogsAfterRecordingWithSn:sessionId:onCompletion:", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC24uploadLogsAfterRecording2sn9sessionId12onCompletionySS_SiySb_s5Error_pSgtctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadLogsAfterRecordingWithSn:sessionId:onCompletion:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudLogUploadError", + "printedName": "PlaudLogUploadError", + "children": [ + { + "kind": "Var", + "name": "alreadyUploading", + "printedName": "alreadyUploading", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudLogUploadError.Type) -> PlaudDeviceBasicSDK.PlaudLogUploadError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError@PlaudLogUploadErrorAlreadyUploading", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO16alreadyUploadingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "directoryNotFound", + "printedName": "directoryNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudLogUploadError.Type) -> PlaudDeviceBasicSDK.PlaudLogUploadError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError@PlaudLogUploadErrorDirectoryNotFound", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO17directoryNotFoundyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "partialUpload", + "printedName": "partialUpload", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudLogUploadError.Type) -> PlaudDeviceBasicSDK.PlaudLogUploadError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError@PlaudLogUploadErrorPartialUpload", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO07partialF0yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_nsErrorDomain", + "printedName": "_nsErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO03_nsG6DomainSSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO03_nsG6DomainSSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO03_nsG6DomainSSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO03_nsG6DomainSSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "_BridgedNSError", + "printedName": "_BridgedNSError", + "usr": "s:10Foundation15_BridgedNSErrorP", + "mangledName": "$s10Foundation15_BridgedNSErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeableError", + "printedName": "_ObjectiveCBridgeableError", + "usr": "s:10Foundation26_ObjectiveCBridgeableErrorP", + "mangledName": "$s10Foundation26_ObjectiveCBridgeableErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudLogUploadPartialError", + "printedName": "PlaudLogUploadPartialError", + "children": [ + { + "kind": "Var", + "name": "result", + "printedName": "result", + "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:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultSDySSypGvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultSDySSypGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultSDySSypGvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultSDySSypGvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadPartialError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadPartialError", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV" + }, + { + "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": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultACSDySSypG_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultACSDySSypG_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "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": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerSnSignRequest", + "printedName": "PlaudPartnerSnSignRequest", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4typeSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4typeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4typeSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4typeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sn", + "printedName": "sn", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV2snSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV2snSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV2snSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV2snSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:sn:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignRequest", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignRequest", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4type2snACSS_SStcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4type2snACSS_SStcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignRequest", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignRequest", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerSnSignResponse", + "printedName": "PlaudPartnerSnSignResponse", + "children": [ + { + "kind": "Var", + "name": "signature", + "printedName": "signature", + "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:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(signature:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV" + }, + { + "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:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureACSSSg_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureACSSSg_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerGenKeyResponse", + "printedName": "PlaudPartnerGenKeyResponse", + "children": [ + { + "kind": "Var", + "name": "publicKey", + "printedName": "publicKey", + "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:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG0SSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG0SSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG0SSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG0SSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "privateKey", + "printedName": "privateKey", + "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:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV07privateG0SSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV07privateG0SSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV07privateG0SSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV07privateG0SSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(publicKey:privateKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerGenKeyResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerGenKeyResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG007privateG0ACSSSg_AFtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG007privateG0ACSSSg_AFtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerGenKeyResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerGenKeyResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerApiErrorResponse", + "printedName": "PlaudPartnerApiErrorResponse", + "children": [ + { + "kind": "Var", + "name": "detail", + "printedName": "detail", + "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:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(detail:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiErrorResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiErrorResponse", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV" + }, + { + "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:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailACSSSg_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailACSSSg_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiErrorResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiErrorResponse", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerApiError", + "printedName": "PlaudPartnerApiError", + "children": [ + { + "kind": "Var", + "name": "invalidParameter", + "printedName": "invalidParameter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO16invalidParameteryACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO16invalidParameteryACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "noUserAccessToken", + "printedName": "noUserAccessToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO17noUserAccessTokenyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO17noUserAccessTokenyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidURL", + "printedName": "invalidURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO10invalidURLyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO10invalidURLyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidResponse", + "printedName": "invalidResponse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO15invalidResponseyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO15invalidResponseyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (Swift.String?) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(detail: Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO12unauthorizedyACSSSg_tcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO12unauthorizedyACSSSg_tcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "serverError", + "printedName": "serverError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (Swift.Int, Swift.String?) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, Swift.String?) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(code: Swift.Int, body: Swift.String?)", + "children": [ + { + "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" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO06serverG0yACSi_SSSgtcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO06serverG0yACSi_SSSgtcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "requestEncodeFailed", + "printedName": "requestEncodeFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO19requestEncodeFailedyACs0G0_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO19requestEncodeFailedyACs0G0_pcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "responseDecodeFailed", + "printedName": "responseDecodeFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO20responseDecodeFailedyACs0G0_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO20responseDecodeFailedyACs0G0_pcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "networkError", + "printedName": "networkError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO07networkG0yACs0G0_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO07networkG0yACs0G0_pcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "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:19PlaudDeviceBasicSDK0A15PartnerApiErrorO16errorDescriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO16errorDescriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK0A15PartnerApiErrorO16errorDescriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO16errorDescriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerApiManager", + "printedName": "PlaudPartnerApiManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiManager", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiManager", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC6sharedACvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiManager", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiManager", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC6sharedACvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setUserAccessToken", + "printedName": "setUserAccessToken(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC18setUserAccessTokenyySSSgF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC18setUserAccessTokenyySSSgF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserAccessToken", + "printedName": "getUserAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC18getUserAccessTokenSSSgyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC18getUserAccessTokenSSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signDeviceSn", + "printedName": "signDeviceSn(deviceType:sn:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC04signB2Sn10deviceType2sn10completionySS_SSys6ResultOyAA0aeI12SignResponseVs5Error_pGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC04signB2Sn10deviceType2sn10completionySS_SSys6ResultOyAA0aeI12SignResponseVs5Error_pGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateRsaKeyPair", + "printedName": "generateRsaKeyPair(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerGenKeyResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerGenKeyResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC18generateRsaKeyPair10completionyys6ResultOyAA0ae3GenJ8ResponseVs5Error_pGc_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC18generateRsaKeyPair10completionyys6ResultOyAA0ae3GenJ8ResponseVs5Error_pGc_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudSDKLogger", + "printedName": "PlaudSDKLogger", + "children": [ + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudSDKLogger(cm)logEvent:parameters:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9SDKLoggerC8logEvent_10parametersySS_So12NSDictionaryCSgtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudSDKLogger", + "printedName": "PlaudDeviceBasicSDK.PlaudSDKLogger", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudSDKLogger" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudSDKLogger(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A9SDKLoggerCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudSDKLogger", + "mangledName": "$s19PlaudDeviceBasicSDK0A9SDKLoggerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "WorkflowStatus", + "printedName": "WorkflowStatus", + "children": [ + { + "kind": "Var", + "name": "pending", + "printedName": "pending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7pendingyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7pendingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "running", + "printedName": "running", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7runningyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7runningyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO8progressyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO8progressyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7successyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7successyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7failureyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7failureyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO9cancelledyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO9cancelledyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7timeoutyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7timeoutyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK14WorkflowStatusO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isFinished", + "printedName": "isFinished", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO10isFinishedSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO10isFinishedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO10isFinishedSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO10isFinishedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSuccess", + "printedName": "isSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO9isSuccessSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO9isSuccessSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO9isSuccessSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO9isSuccessSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueACSgSS_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueACSgSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowTaskType", + "printedName": "WorkflowTaskType", + "children": [ + { + "kind": "Var", + "name": "audioTranscribe", + "printedName": "audioTranscribe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO15audioTranscribeyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO15audioTranscribeyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "aiSummarize", + "printedName": "aiSummarize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO11aiSummarizeyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO11aiSummarizeyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "aiEtl", + "printedName": "aiEtl", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO5aiEtlyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO5aiEtlyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "audioMerge", + "printedName": "audioMerge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO10audioMergeyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO10audioMergeyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO6customyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO6customyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO7unknownyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO7unknownyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK16WorkflowTaskTypeO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueACSgSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskType]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8allCasesSayACGvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8allCasesSayACGvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Nonisolated" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskType]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8allCasesSayACGvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8allCasesSayACGvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskType]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowTaskParams", + "printedName": "WorkflowTaskParams", + "children": [ + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersACSDySSypGSg_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersACSDySSypGSg_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fileId:language:diarization:extras:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV6fileId8language11diarization6extrasACSS_SSSbSDySSypGtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV6fileId8language11diarization6extrasACSS_SSSbSDySSypGtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(etlType:extras:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV7etlType6extrasACSS_SDySSypGtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV7etlType6extrasACSS_SDySSypGtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fileIdList:groupId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV10fileIdList05groupI0ACSaySSG_SStcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV10fileIdList05groupI0ACSaySSG_SStcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(summaryType:extras:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV11summaryType6extrasACSS_SDySSypGtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV11summaryType6extrasACSS_SDySSypGtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowTask", + "printedName": "WorkflowTask", + "children": [ + { + "kind": "Var", + "name": "taskType", + "printedName": "taskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV8taskTypeAA0efH0Ovp", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV8taskTypeAA0efH0Ovp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV8taskTypeAA0efH0Ovg", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV8taskTypeAA0efH0Ovg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskParams", + "printedName": "taskParams", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV10taskParamsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV10taskParamsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV10taskParamsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV10taskParamsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(taskType:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + }, + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV8taskType10parametersAcA0efH0O_SDySSypGSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV8taskType10parametersAcA0efH0O_SDySSypGSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(taskType:taskParams:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + }, + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV8taskType0G6ParamsAcA0efH0O_AA0efI0Vtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV8taskType0G6ParamsAcA0efH0O_AA0efI0Vtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowMetadata", + "printedName": "WorkflowMetadata", + "children": [ + { + "kind": "Var", + "name": "organizationId", + "printedName": "organizationId", + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceSn", + "printedName": "deviceSn", + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV8deviceSnSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV8deviceSnSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV8deviceSnSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV8deviceSnSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customData", + "printedName": "customData", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV10customDataSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV10customDataSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV10customDataSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV10customDataSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(organizationId:ownerId:deviceSn:customData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationId05ownerH08deviceSn10customDataACSSSg_A2HSDySSypGSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationId05ownerH08deviceSn10customDataACSSSg_A2HSDySSypGSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowSubmitRequest", + "printedName": "WorkflowSubmitRequest", + "children": [ + { + "kind": "Var", + "name": "workflows", + "printedName": "workflows", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflowsSayAA0E4TaskVGvp", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflowsSayAA0E4TaskVGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflowsSayAA0E4TaskVGvg", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflowsSayAA0E4TaskVGvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV8metadataAA0E8MetadataVvp", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV8metadataAA0E8MetadataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV8metadataAA0E8MetadataVvg", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV8metadataAA0E8MetadataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV7versionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV7versionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV7versionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV7versionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(workflows:metadata:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitRequest", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitRequest", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "hasDefaultArg": true, + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflows8metadata7versionACSayAA0E4TaskVG_AA0E8MetadataVSStcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflows8metadata7versionACSayAA0E4TaskVG_AA0E8MetadataVSStcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitRequest", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitRequest", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowSubmitResponse", + "printedName": "WorkflowSubmitResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV2idSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV2idSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV2idSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV2idSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6statusAA0E6StatusOvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6statusAA0E6StatusOvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6statusAA0E6StatusOvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6statusAA0E6StatusOvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvs", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "updateTime", + "printedName": "updateTime", + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10updateTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10updateTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10updateTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10updateTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileId", + "printedName": "fileId", + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6fileIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6fileIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6fileIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6fileIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV9startTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV9startTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV9startTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV9startTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7versionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7versionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7versionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7versionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataJson", + "printedName": "metadataJson", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalTasks", + "printedName": "totalTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10totalTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10totalTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10totalTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10totalTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedTasks", + "printedName": "completedTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV14completedTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV14completedTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV14completedTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV14completedTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "config", + "printedName": "config", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6configSayAA0E4TaskVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6configSayAA0E4TaskVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6configSayAA0E4TaskVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6configSayAA0E4TaskVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PartialWorkflowStatusResponse", + "printedName": "PartialWorkflowStatusResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV2idSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV2idSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV2idSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV2idSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7endTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7endTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7endTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7endTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "updateTime", + "printedName": "updateTime", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10updateTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10updateTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10updateTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10updateTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileId", + "printedName": "fileId", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6fileIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6fileIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6fileIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6fileIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV9startTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV9startTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV9startTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV9startTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7versionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7versionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7versionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7versionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataJson", + "printedName": "metadataJson", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedTasks", + "printedName": "completedTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV14completedTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV14completedTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV14completedTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV14completedTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalTasks", + "printedName": "totalTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10totalTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10totalTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10totalTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10totalTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV8progressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV8progressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV8progressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV8progressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7messageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7messageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7messageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7messageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estimatedCompletionTime", + "printedName": "estimatedCompletionTime", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV23estimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV23estimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV23estimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV23estimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskStatuses", + "printedName": "taskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12taskStatusesSDyS2SGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12taskStatusesSDyS2SGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12taskStatusesSDyS2SGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12taskStatusesSDyS2SGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "config", + "printedName": "config", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6configSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6configSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6configSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6configSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PartialWorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.PartialWorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowStatusResponse", + "printedName": "WorkflowStatusResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV2idSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV2idSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV2idSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV2idSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6statusAA0eF0Ovp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6statusAA0eF0Ovp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6statusAA0eF0Ovg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6statusAA0eF0Ovg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7endTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7endTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7endTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7endTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "updateTime", + "printedName": "updateTime", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV10updateTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV10updateTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV10updateTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV10updateTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileId", + "printedName": "fileId", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6fileIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6fileIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6fileIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6fileIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV9startTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV9startTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV9startTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV9startTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7versionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7versionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7versionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7versionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataJson", + "printedName": "metadataJson", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedTasks", + "printedName": "completedTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV14completedTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV14completedTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV14completedTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV14completedTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalTasks", + "printedName": "totalTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV10totalTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV10totalTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV10totalTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV10totalTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV8progressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV8progressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV8progressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV8progressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7messageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7messageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7messageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7messageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estimatedCompletionTime", + "printedName": "estimatedCompletionTime", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV23estimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV23estimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV23estimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV23estimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskStatuses", + "printedName": "taskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV12taskStatusesSDySSAA0eF0OGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV12taskStatusesSDySSAA0eF0OGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV12taskStatusesSDySSAA0eF0OGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV12taskStatusesSDySSAA0eF0OGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "config", + "printedName": "config", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6configSayAA0E4TaskVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6configSayAA0E4TaskVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6configSayAA0E4TaskVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6configSayAA0E4TaskVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TranscriptSegment", + "printedName": "TranscriptSegment", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5startSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5startSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5startSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5startSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV3endSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV3endSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV3endSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV3endSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "speaker", + "printedName": "speaker", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV7speakerSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV7speakerSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV7speakerSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV7speakerSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV4textSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV4textSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV4textSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV4textSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "index", + "printedName": "index", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5indexSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5indexSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5indexSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5indexSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(start:end:speaker:text:index:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5start3end7speaker4text5indexACSd_SdS2SSiSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5start3end7speaker4text5indexACSd_SdS2SSiSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TranscriptResult", + "printedName": "TranscriptResult", + "children": [ + { + "kind": "Var", + "name": "segments", + "printedName": "segments", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.TranscriptSegment]", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV8segmentsSayAA0E7SegmentVGvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV8segmentsSayAA0E7SegmentVGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.TranscriptSegment]", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV8segmentsSayAA0E7SegmentVGvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV8segmentsSayAA0E7SegmentVGvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "embeddings", + "printedName": "embeddings", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV10embeddingsSDySSSaySdGGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV10embeddingsSDySSSaySdGGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV10embeddingsSDySSSaySdGGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV10embeddingsSDySSSaySdGGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV6statusSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV6statusSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV6statusSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV6statusSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(segments:embeddings:status:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.TranscriptSegment]", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "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": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV8segments10embeddings6statusACSayAA0E7SegmentVG_SDySSSaySdGGSgSiSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV8segments10embeddings6statusACSayAA0E7SegmentVG_SDySSSaySdGGSgSiSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "allSpeakers", + "printedName": "allSpeakers", + "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:19PlaudDeviceBasicSDK16TranscriptResultV11allSpeakersSaySSGvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV11allSpeakersSaySSGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK16TranscriptResultV11allSpeakersSaySSGvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV11allSpeakersSaySSGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalDuration", + "printedName": "totalDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13totalDurationSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13totalDurationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13totalDurationSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13totalDurationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "textBySpeaker", + "printedName": "textBySpeaker", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13textBySpeakerSDyS2SGvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13textBySpeakerSDyS2SGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13textBySpeakerSDyS2SGvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13textBySpeakerSDyS2SGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allText", + "printedName": "allText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV7allTextSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV7allTextSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK16TranscriptResultV7allTextSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV7allTextSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEmbeddings", + "printedName": "hasEmbeddings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13hasEmbeddingsSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13hasEmbeddingsSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13hasEmbeddingsSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13hasEmbeddingsSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getEmbeddings", + "printedName": "getEmbeddings(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13getEmbeddings3forSaySdGSgSS_tF", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13getEmbeddings3forSaySdGSgSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CommunicationFeedback", + "printedName": "CommunicationFeedback", + "children": [ + { + "kind": "Var", + "name": "highlight", + "printedName": "highlight", + "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:19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlightSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlightSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlightSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlightSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestion", + "printedName": "suggestion", + "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:19PlaudDeviceBasicSDK21CommunicationFeedbackV10suggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV10suggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK21CommunicationFeedbackV10suggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV10suggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(highlight:suggestion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CommunicationFeedback", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlight10suggestionACSSSg_AFtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlight10suggestionACSSSg_AFtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CommunicationFeedback", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DealIntention", + "printedName": "DealIntention", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV11descriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV11descriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13DealIntentionV11descriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV11descriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rating", + "printedName": "rating", + "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:19PlaudDeviceBasicSDK13DealIntentionV6ratingSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV6ratingSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13DealIntentionV6ratingSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV6ratingSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(description:rating:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV11description6ratingACSSSg_AFtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV11description6ratingACSSSg_AFtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DealReason", + "printedName": "DealReason", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV11descriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV11descriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK10DealReasonV11descriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV11descriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reason", + "printedName": "reason", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV6reasonSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV6reasonSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV6reasonSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV6reasonSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(description:reason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + }, + { + "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV11description6reasonACSSSg_SaySSGSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV11description6reasonACSSSg_SaySSGSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoDealReason", + "printedName": "NoDealReason", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV11descriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV11descriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK12NoDealReasonV11descriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV11descriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestion", + "printedName": "suggestion", + "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:19PlaudDeviceBasicSDK12NoDealReasonV10suggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV10suggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK12NoDealReasonV10suggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV10suggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reason", + "printedName": "reason", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV6reasonSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV6reasonSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV6reasonSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV6reasonSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(description:suggestion:reason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV11description10suggestion6reasonACSSSg_AGSaySSGSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV11description10suggestion6reasonACSSSg_AGSaySSGSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DealAnalysis", + "printedName": "DealAnalysis", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK12DealAnalysisV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK12DealAnalysisV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "intention", + "printedName": "intention", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealIntention?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV9intentionAA0E9IntentionVSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV9intentionAA0E9IntentionVSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealIntention?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV9intentionAA0E9IntentionVSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV9intentionAA0E9IntentionVSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dealReason", + "printedName": "dealReason", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV10dealReasonAA0eH0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV10dealReasonAA0eH0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV10dealReasonAA0eH0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV10dealReasonAA0eH0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "noDealReason", + "printedName": "noDealReason", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.NoDealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV02noE6ReasonAA02NoeH0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV02noE6ReasonAA02NoeH0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.NoDealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV02noE6ReasonAA02NoeH0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV02noE6ReasonAA02NoeH0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(status:intention:dealReason:noDealReason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealAnalysis", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV" + }, + { + "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": "PlaudDeviceBasicSDK.DealIntention?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.NoDealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV6status9intention10dealReason02noeJ0ACSSSg_AA0E9IntentionVSgAA0eJ0VSgAA02NoeJ0VSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV6status9intention10dealReason02noeJ0ACSSSg_AA0E9IntentionVSgAA0eJ0VSgAA02NoeJ0VSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealAnalysis", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AIEtlResult", + "printedName": "AIEtlResult", + "children": [ + { + "kind": "Var", + "name": "assessmentTreatmentPairs", + "printedName": "assessmentTreatmentPairs", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV24assessmentTreatmentPairsSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV24assessmentTreatmentPairsSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV24assessmentTreatmentPairsSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV24assessmentTreatmentPairsSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appellation", + "printedName": "appellation", + "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:19PlaudDeviceBasicSDK11AIEtlResultV11appellationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV11appellationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK11AIEtlResultV11appellationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV11appellationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "communicationFeedback", + "printedName": "communicationFeedback", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommunicationFeedback", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV21communicationFeedbackAA013CommunicationH0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV21communicationFeedbackAA013CommunicationH0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommunicationFeedback", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV21communicationFeedbackAA013CommunicationH0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV21communicationFeedbackAA013CommunicationH0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clinicalReport", + "printedName": "clinicalReport", + "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:19PlaudDeviceBasicSDK11AIEtlResultV14clinicalReportSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV14clinicalReportSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK11AIEtlResultV14clinicalReportSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV14clinicalReportSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mapped", + "printedName": "mapped", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV6mappedSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV6mappedSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV6mappedSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV6mappedSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcription", + "printedName": "transcription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV13transcriptionAA010TranscriptF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV13transcriptionAA010TranscriptF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV13transcriptionAA010TranscriptF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV13transcriptionAA010TranscriptF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "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:19PlaudDeviceBasicSDK11AIEtlResultV7summarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV7summarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK11AIEtlResultV7summarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV7summarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customerProjects", + "printedName": "customerProjects", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV16customerProjectsSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV16customerProjectsSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV16customerProjectsSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV16customerProjectsSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unmapped", + "printedName": "unmapped", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV8unmappedSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV8unmappedSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV8unmappedSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV8unmappedSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dealAnalysis", + "printedName": "dealAnalysis", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealAnalysis", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV12dealAnalysisAA04DealH0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV12dealAnalysisAA04DealH0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealAnalysis", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV12dealAnalysisAA04DealH0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV12dealAnalysisAA04DealH0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "doctorProjects", + "printedName": "doctorProjects", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV14doctorProjectsSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV14doctorProjectsSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV14doctorProjectsSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV14doctorProjectsSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "content", + "printedName": "content", + "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:19PlaudDeviceBasicSDK11AIEtlResultV7contentSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV7contentSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK11AIEtlResultV7contentSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV7contentSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryResult", + "printedName": "AISummaryResult", + "children": [ + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "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:19PlaudDeviceBasicSDK15AISummaryResultV7summarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7summarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV7summarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7summarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keyPoints", + "printedName": "keyPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV9keyPointsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV9keyPointsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV9keyPointsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV9keyPointsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actionItems", + "printedName": "actionItems", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV11actionItemsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV11actionItemsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV11actionItemsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV11actionItemsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "participants", + "printedName": "participants", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV12participantsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV12participantsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV12participantsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV12participantsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "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:19PlaudDeviceBasicSDK15AISummaryResultV8durationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV8durationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV8durationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV8durationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "template", + "printedName": "template", + "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:19PlaudDeviceBasicSDK15AISummaryResultV8templateSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV8templateSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV8templateSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV8templateSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "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:19PlaudDeviceBasicSDK15AISummaryResultV5modelSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV5modelSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV5modelSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV5modelSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "content", + "printedName": "content", + "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:19PlaudDeviceBasicSDK15AISummaryResultV7contentSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7contentSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV7contentSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7contentSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK15AISummaryResultV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "result", + "printedName": "result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryInnerResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV6resultAA0e5InnerF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6resultAA0e5InnerF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryInnerResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV6resultAA0e5InnerF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6resultAA0e5InnerF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "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:19PlaudDeviceBasicSDK15AISummaryResultV4textSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV4textSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV4textSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV4textSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(summary:keyPoints:actionItems:participants:duration:template:model:content:status:result:text:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryInnerResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV7summary9keyPoints11actionItems12participants8duration8template5model7content6status6result4textACSSSg_SaySSGSgA2q5oA0e5InnerF0VSgAOtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7summary9keyPoints11actionItems12participants8duration8template5model7content6status6result4textACSSSg_SaySSGSgA2q5oA0e5InnerF0VSgAOtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "extractedSummary", + "printedName": "extractedSummary", + "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:19PlaudDeviceBasicSDK15AISummaryResultV16extractedSummarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV16extractedSummarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK15AISummaryResultV16extractedSummarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV16extractedSummarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedKeyPoints", + "printedName": "extractedKeyPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV18extractedKeyPointsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV18extractedKeyPointsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV18extractedKeyPointsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV18extractedKeyPointsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedActionItems", + "printedName": "extractedActionItems", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV20extractedActionItemsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV20extractedActionItemsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV20extractedActionItemsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV20extractedActionItemsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedParticipants", + "printedName": "extractedParticipants", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV21extractedParticipantsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV21extractedParticipantsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV21extractedParticipantsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV21extractedParticipantsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedModel", + "printedName": "extractedModel", + "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:19PlaudDeviceBasicSDK15AISummaryResultV14extractedModelSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV14extractedModelSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK15AISummaryResultV14extractedModelSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV14extractedModelSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedLanguage", + "printedName": "extractedLanguage", + "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:19PlaudDeviceBasicSDK15AISummaryResultV17extractedLanguageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV17extractedLanguageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK15AISummaryResultV17extractedLanguageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV17extractedLanguageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedMarkdown", + "printedName": "extractedMarkdown", + "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:19PlaudDeviceBasicSDK15AISummaryResultV17extractedMarkdownSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV17extractedMarkdownSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK15AISummaryResultV17extractedMarkdownSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV17extractedMarkdownSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryInnerResult", + "printedName": "AISummaryInnerResult", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK20AISummaryInnerResultV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK20AISummaryInnerResultV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "result", + "printedName": "result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryDetailedResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV6resultAA0e8DetailedG0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6resultAA0e8DetailedG0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryDetailedResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV6resultAA0e8DetailedG0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6resultAA0e8DetailedG0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "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:19PlaudDeviceBasicSDK20AISummaryInnerResultV4textSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV4textSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK20AISummaryInnerResultV4textSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV4textSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryInnerResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryDetailedResult", + "printedName": "AISummaryDetailedResult", + "children": [ + { + "kind": "Var", + "name": "summaryId", + "printedName": "summaryId", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV9summaryIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV9summaryIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV9summaryIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV9summaryIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "selectPromptType", + "printedName": "selectPromptType", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV16selectPromptTypeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV16selectPromptTypeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV16selectPromptTypeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV16selectPromptTypeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "speakerMapping", + "printedName": "speakerMapping", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV14speakerMappingSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV14speakerMappingSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV14speakerMappingSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV14speakerMappingSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "usePersona", + "printedName": "usePersona", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10usePersonaSbSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10usePersonaSbSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10usePersonaSbSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10usePersonaSbSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV7versionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV7versionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV7versionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV7versionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokensLens", + "printedName": "tokensLens", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10tokensLensSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10tokensLensSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10tokensLensSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10tokensLensSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "retryCount", + "printedName": "retryCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10retryCountSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10retryCountSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10retryCountSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10retryCountSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "header", + "printedName": "header", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryHeader", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV6headerAA0E6HeaderVSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV6headerAA0E6HeaderVSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryHeader", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV6headerAA0E6HeaderVSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV6headerAA0E6HeaderVSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV7summarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV7summarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV7summarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV7summarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSuggestion", + "printedName": "aiSuggestion", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV12aiSuggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV12aiSuggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV12aiSuggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV12aiSuggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "language", + "printedName": "language", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8languageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8languageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8languageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8languageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "markdown", + "printedName": "markdown", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8markdownSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8markdownSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8markdownSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8markdownSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "form", + "printedName": "form", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryForm", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV4formAA0E4FormVSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV4formAA0E4FormVSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryForm", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV4formAA0E4FormVSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV4formAA0E4FormVSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endpoint", + "printedName": "endpoint", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8endpointSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8endpointSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8endpointSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8endpointSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryContent]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryContent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryContent", + "printedName": "PlaudDeviceBasicSDK.AISummaryContent", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8contentsSayAA0E7ContentVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8contentsSayAA0E7ContentVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryContent]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryContent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryContent", + "printedName": "PlaudDeviceBasicSDK.AISummaryContent", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8contentsSayAA0E7ContentVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8contentsSayAA0E7ContentVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV5modelSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV5modelSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV5modelSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV5modelSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "textLens", + "printedName": "textLens", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8textLensSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8textLensSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8textLensSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8textLensSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryDetailedResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryHeader", + "printedName": "AISummaryHeader", + "children": [ + { + "kind": "Var", + "name": "category", + "printedName": "category", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV8categorySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8categorySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV8categorySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8categorySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "industryCategory", + "printedName": "industryCategory", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV16industryCategorySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV16industryCategorySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV16industryCategorySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV16industryCategorySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "languageCode", + "printedName": "languageCode", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV12languageCodeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV12languageCodeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV12languageCodeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV12languageCodeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keywords", + "printedName": "keywords", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV8keywordsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8keywordsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV8keywordsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8keywordsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recommendQuestions", + "printedName": "recommendQuestions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryQuestion]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryQuestion]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryQuestion", + "printedName": "PlaudDeviceBasicSDK.AISummaryQuestion", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV18recommendQuestionsSayAA0E8QuestionVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV18recommendQuestionsSayAA0E8QuestionVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryQuestion]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryQuestion]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryQuestion", + "printedName": "PlaudDeviceBasicSDK.AISummaryQuestion", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV18recommendQuestionsSayAA0E8QuestionVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV18recommendQuestionsSayAA0E8QuestionVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "summaryType", + "printedName": "summaryType", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV11summaryTypeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV11summaryTypeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV11summaryTypeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV11summaryTypeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "originalCategory", + "printedName": "originalCategory", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV16originalCategorySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV16originalCategorySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV16originalCategorySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV16originalCategorySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "summaryId", + "printedName": "summaryId", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV9summaryIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV9summaryIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV9summaryIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV9summaryIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headline", + "printedName": "headline", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV8headlineSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8headlineSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV8headlineSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8headlineSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryHeader", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryQuestion", + "printedName": "AISummaryQuestion", + "children": [ + { + "kind": "Var", + "name": "question", + "printedName": "question", + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV8questionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV8questionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV8questionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV8questionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "category", + "printedName": "category", + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV8categorySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV8categorySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV8categorySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV8categorySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mainPurpose", + "printedName": "mainPurpose", + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV11mainPurposeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV11mainPurposeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV11mainPurposeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV11mainPurposeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryQuestion", + "printedName": "PlaudDeviceBasicSDK.AISummaryQuestion", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryForm", + "printedName": "AISummaryForm", + "children": [ + { + "kind": "Var", + "name": "arrangements", + "printedName": "arrangements", + "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:19PlaudDeviceBasicSDK13AISummaryFormV12arrangementsSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV12arrangementsSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV12arrangementsSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV12arrangementsSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "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:19PlaudDeviceBasicSDK13AISummaryFormV4infoSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV4infoSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV4infoSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV4infoSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "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:19PlaudDeviceBasicSDK13AISummaryFormV8locationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV8locationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV8locationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV8locationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSuggestions", + "printedName": "aiSuggestions", + "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:19PlaudDeviceBasicSDK13AISummaryFormV13aiSuggestionsSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV13aiSuggestionsSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV13aiSuggestionsSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV13aiSuggestionsSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "insertMore", + "printedName": "insertMore", + "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:19PlaudDeviceBasicSDK13AISummaryFormV10insertMoreSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV10insertMoreSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV10insertMoreSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV10insertMoreSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "notes", + "printedName": "notes", + "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:19PlaudDeviceBasicSDK13AISummaryFormV5notesSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV5notesSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV5notesSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV5notesSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conclusion", + "printedName": "conclusion", + "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:19PlaudDeviceBasicSDK13AISummaryFormV10conclusionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV10conclusionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV10conclusionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV10conclusionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dateTime", + "printedName": "dateTime", + "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:19PlaudDeviceBasicSDK13AISummaryFormV8dateTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV8dateTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV8dateTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV8dateTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attendees", + "printedName": "attendees", + "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:19PlaudDeviceBasicSDK13AISummaryFormV9attendeesSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV9attendeesSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV9attendeesSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV9attendeesSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryForm", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryContent", + "printedName": "AISummaryContent", + "children": [ + { + "kind": "Var", + "name": "speakerNameMapping", + "printedName": "speakerNameMapping", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV18speakerNameMappingSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV18speakerNameMappingSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV18speakerNameMappingSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV18speakerNameMappingSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arrangements", + "printedName": "arrangements", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV12arrangementsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV12arrangementsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV12arrangementsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV12arrangementsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "topics", + "printedName": "topics", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV6topicsSayAA0E5TopicVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV6topicsSayAA0E5TopicVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV6topicsSayAA0E5TopicVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV6topicsSayAA0E5TopicVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "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:19PlaudDeviceBasicSDK16AISummaryContentV5themeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV5themeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16AISummaryContentV5themeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV5themeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSuggestion", + "printedName": "aiSuggestion", + "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:19PlaudDeviceBasicSDK16AISummaryContentV12aiSuggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV12aiSuggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16AISummaryContentV12aiSuggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV12aiSuggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryContent", + "printedName": "PlaudDeviceBasicSDK.AISummaryContent", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryTopic", + "printedName": "AISummaryTopic", + "children": [ + { + "kind": "Var", + "name": "topic", + "printedName": "topic", + "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:19PlaudDeviceBasicSDK14AISummaryTopicV5topicSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV5topicSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK14AISummaryTopicV5topicSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV5topicSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conclusion", + "printedName": "conclusion", + "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:19PlaudDeviceBasicSDK14AISummaryTopicV10conclusionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV10conclusionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK14AISummaryTopicV10conclusionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV10conclusionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV11descriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV11descriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK14AISummaryTopicV11descriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV11descriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PartialWorkflowResultResponse", + "printedName": "PartialWorkflowResultResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV2idSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV2idSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV2idSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV2idSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskResults", + "printedName": "taskResults", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedAt", + "printedName": "completedAt", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11completedAtSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11completedAtSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11completedAtSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11completedAtSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8durationSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8durationSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8durationSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8durationSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7messageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7messageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7messageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7messageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8progressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8progressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8progressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8progressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estimatedCompletionTime", + "printedName": "estimatedCompletionTime", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV23estimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV23estimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV23estimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV23estimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskStatuses", + "printedName": "taskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV12taskStatusesSDyS2SGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV12taskStatusesSDyS2SGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV12taskStatusesSDyS2SGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV12taskStatusesSDyS2SGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tasks", + "printedName": "tasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV5tasksSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV5tasksSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV5tasksSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV5tasksSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PartialWorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.PartialWorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowResult", + "printedName": "WorkflowResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": "<τ_0_0> (PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>.Type) -> (τ_0_0) -> PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0) -> PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO7successyACyxGxcAEmlF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowResultO7successyACyxGxcAEmlF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": "<τ_0_0> (PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO7failureyACyxGs5Error_pcAEmlF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowResultO7failureyACyxGs5Error_pcAEmlF", + "moduleName": "PlaudDeviceBasicSDK" + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowResultO", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "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": "TypeDecl", + "name": "WorkflowError", + "printedName": "WorkflowError", + "children": [ + { + "kind": "Var", + "name": "invalidURL", + "printedName": "invalidURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO10invalidURLyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO10invalidURLyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "networkError", + "printedName": "networkError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO07networkF0yACs0F0_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO07networkF0yACs0F0_pcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidResponse", + "printedName": "invalidResponse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO15invalidResponseyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO15invalidResponseyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "serverError", + "printedName": "serverError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO06serverF0yACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO06serverF0yACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "workflowNotFound", + "printedName": "workflowNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO16workflowNotFoundyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO16workflowNotFoundyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "workflowFailed", + "printedName": "workflowFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO14workflowFailedyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO14workflowFailedyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO7timeoutyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO7timeoutyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "noApiToken", + "printedName": "noApiToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO10noApiTokenyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO10noApiTokenyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "urlBuildFailed", + "printedName": "urlBuildFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO14urlBuildFailedyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO14urlBuildFailedyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "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:19PlaudDeviceBasicSDK13WorkflowErrorO16errorDescriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO16errorDescriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK13WorkflowErrorO16errorDescriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO16errorDescriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudWorkflowManager", + "printedName": "PlaudWorkflowManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWorkflowManager", + "printedName": "PlaudDeviceBasicSDK.PlaudWorkflowManager", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC6sharedACvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWorkflowManager", + "printedName": "PlaudDeviceBasicSDK.PlaudWorkflowManager", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC6sharedACvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "submitWorkflow", + "printedName": "submitWorkflow(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowSubmitRequest", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitRequest", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC06submitE0_10completionyAA0E13SubmitRequestV_yAA0E6ResultOyAA0eI8ResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC06submitE0_10completionyAA0E13SubmitRequestV_yAA0E6ResultOyAA0eI8ResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWorkflowStatus", + "printedName": "getWorkflowStatus(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC03getE6Status_10completionySS_yAA0E6ResultOyAA0eH8ResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC03getE6Status_10completionySS_yAA0E6ResultOyAA0eH8ResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWorkflowResults", + "printedName": "getWorkflowResults(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC03getE7Results_10completionySS_yAA0E6ResultOyAA0eJ8ResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC03getE7Results_10completionySS_yAA0E6ResultOyAA0eJ8ResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "submitAndWaitForCompletion", + "printedName": "submitAndWaitForCompletion(_:timeout:progressHandler:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowSubmitRequest", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitRequest", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC26submitAndWaitForCompletion_7timeout15progressHandler10completionyAA0E13SubmitRequestV_SdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0etS0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC26submitAndWaitForCompletion_7timeout15progressHandler10completionyAA0E13SubmitRequestV_SdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0etS0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pollWorkflowStatus", + "printedName": "pollWorkflowStatus(workflowId:timeout:progressHandler:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC04pollE6Status10workflowId7timeout15progressHandler10completionySS_SdyAA0eH8ResponseVcSgyAA0E6ResultOyAA0epO0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC04pollE6Status10workflowId7timeout15progressHandler10completionySS_SdyAA0eH8ResponseVcSgyAA0E6ResultOyAA0epO0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAudioTranscribeWorkflow", + "printedName": "createAudioTranscribeWorkflow(fileId:language:diarization:transcriptType:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC021createAudioTranscribeE06fileId8language11diarization14transcriptType10completionySS_SSSbSSSgyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC021createAudioTranscribeE06fileId8language11diarization14transcriptType10completionySS_SSSbSSSgyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAIEtlWorkflow", + "printedName": "createAIEtlWorkflow(etlType:extras:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC011createAIEtlE07etlType6extras10completionySS_SDySSypGyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC011createAIEtlE07etlType6extras10completionySS_SDySSypGyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAudioMergeWorkflow", + "printedName": "createAudioMergeWorkflow(fileIdList:groupId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC016createAudioMergeE010fileIdList05groupK010completionySaySSG_SSyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC016createAudioMergeE010fileIdList05groupK010completionySaySSG_SSyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createTranscribeAndAnalysisWorkflow", + "printedName": "createTranscribeAndAnalysisWorkflow(fileId:language:diarization:transcriptType:etlType:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC027createTranscribeAndAnalysisE06fileId8language11diarization14transcriptType03etlP010completionySS_SSSbSSSgSSyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC027createTranscribeAndAnalysisE06fileId8language11diarization14transcriptType03etlP010completionySS_SSSbSSSgSSyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMergeAndAnalysisWorkflow", + "printedName": "createMergeAndAnalysisWorkflow(fileIdList:groupId:etlType:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC022createMergeAndAnalysisE010fileIdList05groupL07etlType10completionySaySSG_S2SyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC022createMergeAndAnalysisE010fileIdList05groupL07etlType10completionySaySSG_S2SyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doAudioTranscribeWorkflow", + "printedName": "doAudioTranscribeWorkflow(fileId:language:diarization:transcriptType:timeout:progressHandler:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "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": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC017doAudioTranscribeE06fileId8language11diarization14transcriptType7timeout15progressHandler10completionySS_SSSbSSSgSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0evU0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC017doAudioTranscribeE06fileId8language11diarization14transcriptType7timeout15progressHandler10completionySS_SSSbSSSgSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0evU0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doTranscribeAndAnalysisWorkflow", + "printedName": "doTranscribeAndAnalysisWorkflow(fileId:language:diarization:transcriptType:etlType:timeout:progressHandler:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC023doTranscribeAndAnalysisE06fileId8language11diarization14transcriptType03etlP07timeout15progressHandler10completionySS_SSSbSSSgSSSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0exW0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC023doTranscribeAndAnalysisE06fileId8language11diarization14transcriptType03etlP07timeout15progressHandler10completionySS_SSSbSSSgSSSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0exW0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doTranscribeAndAISummaryWorkflow", + "printedName": "doTranscribeAndAISummaryWorkflow(fileId:language:diarization:transcriptType:templateId:prompt:model:startTime:timeout:progressHandler:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "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": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC024doTranscribeAndAISummaryE06fileId8language11diarization14transcriptType08templateL06prompt5model9startTime7timeout15progressHandler10completionySS_SSSbSSSgSSAPSSSiSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0E14ResultResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC024doTranscribeAndAISummaryE06fileId8language11diarization14transcriptType08templateL06prompt5model9startTime7timeout15progressHandler10completionySS_SSSbSSSgSSAPSSSiSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0E14ResultResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doAudioMergeWorkflow", + "printedName": "doAudioMergeWorkflow(fileIdList:groupId:timeout:progressHandler:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC012doAudioMergeE010fileIdList05groupK07timeout15progressHandler10completionySaySSG_SSSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0etS0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC012doAudioMergeE010fileIdList05groupK07timeout15progressHandler10completionySaySSG_SSSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0etS0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doMergeAndAnalysisWorkflow", + "printedName": "doMergeAndAnalysisWorkflow(fileIdList:groupId:etlType:timeout:progressHandler:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC018doMergeAndAnalysisE010fileIdList05groupL07etlType7timeout15progressHandler10completionySaySSG_S2SSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0ewV0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC018doMergeAndAnalysisE010fileIdList05groupL07etlType7timeout15progressHandler10completionySaySSG_S2SSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0ewV0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudWorkflowManagerTest", + "printedName": "PlaudWorkflowManagerTest", + "children": [ + { + "kind": "Function", + "name": "runCompleteWorkflowTest", + "printedName": "runCompleteWorkflowTest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC011runCompleteeG0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC011runCompleteeG0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testAudioTranscribeWorkflow", + "printedName": "testAudioTranscribeWorkflow(fileId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC019testAudioTranscribeE06fileIdySS_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC019testAudioTranscribeE06fileIdySS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testAIEtlWorkflow", + "printedName": "testAIEtlWorkflow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC09testAIEtlE0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC09testAIEtlE0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testTranscribeAndAnalysisWorkflow", + "printedName": "testTranscribeAndAnalysisWorkflow(fileId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "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": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC025testTranscribeAndAnalysisE06fileId10completionySS_ySbctFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC025testTranscribeAndAnalysisE06fileId10completionySS_ySbctFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testAudioMergeWorkflow", + "printedName": "testAudioMergeWorkflow(fileIdList:)", + "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": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC014testAudioMergeE010fileIdListySaySSG_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC014testAudioMergeE010fileIdListySaySSG_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testMergeAndAnalysisWorkflow", + "printedName": "testMergeAndAnalysisWorkflow(fileId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "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": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC020testMergeAndAnalysisE06fileId10completionySS_ySbctFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC020testMergeAndAnalysisE06fileId10completionySS_ySbctFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testCustomWorkflow", + "printedName": "testCustomWorkflow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC010testCustomE0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC010testCustomE0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testJSONParsingFix", + "printedName": "testJSONParsingFix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC18testJSONParsingFixyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC18testJSONParsingFixyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testDoAudioTranscribeWorkflow", + "printedName": "testDoAudioTranscribeWorkflow(fileId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC021testDoAudioTranscribeE06fileIdySS_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC021testDoAudioTranscribeE06fileIdySS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testURLBuilding", + "printedName": "testURLBuilding()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC15testURLBuildingyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC15testURLBuildingyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testWorkflowStatusResponseParsing", + "printedName": "testWorkflowStatusResponseParsing()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE21StatusResponseParsingyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE21StatusResponseParsingyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testNewWorkflowResultResponseParsing", + "printedName": "testNewWorkflowResultResponseParsing()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC07testNewE21ResultResponseParsingyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC07testNewE21ResultResponseParsingyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testWorkflowResultResponseWithAIEtl", + "printedName": "testWorkflowResultResponseWithAIEtl()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE23ResultResponseWithAIEtlyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE23ResultResponseWithAIEtlyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testTranscribeAndAISummaryWorkflow", + "printedName": "testTranscribeAndAISummaryWorkflow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC026testTranscribeAndAISummaryE0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC026testTranscribeAndAISummaryE0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testWorkflowResultResponseWithComplexAISummary", + "printedName": "testWorkflowResultResponseWithComplexAISummary()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE34ResultResponseWithComplexAISummaryyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE34ResultResponseWithComplexAISummaryyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pollWorkflowCompletion", + "printedName": "pollWorkflowCompletion(workflowId:description:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "hasDefaultArg": true + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04pollE10Completion10workflowId11description10completionySS_SSySbctFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04pollE10Completion10workflowId11description10completionySS_SSySbctFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "PlaudWorkflowManagerExample", + "printedName": "PlaudWorkflowManagerExample", + "children": [ + { + "kind": "Function", + "name": "runAllExamples", + "printedName": "runAllExamples()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC14runAllExamplesyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC14runAllExamplesyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "simpleTranscribeExample", + "printedName": "simpleTranscribeExample()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC016simpleTranscribeG0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC016simpleTranscribeG0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "batchProcessingExample", + "printedName": "batchProcessingExample()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC015batchProcessingG0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC015batchProcessingG0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC", + "mangledName": "$s19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TestAgent", + "printedName": "TestAgent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "TestAgent", + "printedName": "PlaudDeviceBasicSDK.TestAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK9TestAgentC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TestAgent", + "printedName": "PlaudDeviceBasicSDK.TestAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK9TestAgentC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "testFunc", + "printedName": "testFunc()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent(im)testFunc", + "mangledName": "$s19PlaudDeviceBasicSDK9TestAgentC8testFuncSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent", + "mangledName": "$s19PlaudDeviceBasicSDK9TestAgentC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "WorkflowResultResponse", + "printedName": "WorkflowResultResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV2idSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV2idSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV2idSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV2idSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV6statusSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6statusSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV6statusSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6statusSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataJson", + "printedName": "metadataJson", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileId", + "printedName": "fileId", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV6fileIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6fileIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV6fileIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6fileIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tasks", + "printedName": "tasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV5tasksSayAA0e4TaskF0VGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV5tasksSayAA0e4TaskF0VGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV5tasksSayAA0e4TaskF0VGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV5tasksSayAA0e4TaskF0VGvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskResults", + "printedName": "taskResults", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedAt", + "printedName": "completedAt", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV11completedAtSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11completedAtSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV11completedAtSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11completedAtSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8durationSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8durationSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8durationSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8durationSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV7messageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7messageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV7messageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7messageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8progressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8progressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8progressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8progressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estimatedCompletionTime", + "printedName": "estimatedCompletionTime", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV23estimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23estimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV23estimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23estimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskStatuses", + "printedName": "taskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12taskStatusesSDyS2SGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12taskStatusesSDyS2SGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12taskStatusesSDyS2SGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12taskStatusesSDyS2SGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "legacyResults", + "printedName": "legacyResults", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyResultsSDySSypGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyResultsSDySSypGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyResultsSDySSypGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyResultsSDySSypGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyTaskResults", + "printedName": "legacyTaskResults", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyTaskResultsSDySSypGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyTaskResultsSDySSypGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyTaskResultsSDySSypGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyTaskResultsSDySSypGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyCompletedAt", + "printedName": "legacyCompletedAt", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyCompletedAtSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyCompletedAtSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyCompletedAtSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyCompletedAtSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDuration", + "printedName": "legacyDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyDurationSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyDurationSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyDurationSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyDurationSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyProgress", + "printedName": "legacyProgress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyProgressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyProgressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyProgressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyProgressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyMessage", + "printedName": "legacyMessage", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyMessageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyMessageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyMessageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyMessageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyEstimatedCompletionTime", + "printedName": "legacyEstimatedCompletionTime", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV29legacyEstimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV29legacyEstimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV29legacyEstimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV29legacyEstimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyTaskStatuses", + "printedName": "legacyTaskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18legacyTaskStatusesSDyS2SGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18legacyTaskStatusesSDyS2SGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18legacyTaskStatusesSDyS2SGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18legacyTaskStatusesSDyS2SGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstTranscriptResult", + "printedName": "firstTranscriptResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV015firstTranscriptF0AA0iF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV015firstTranscriptF0AA0iF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV015firstTranscriptF0AA0iF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV015firstTranscriptF0AA0iF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstAIEtlResult", + "printedName": "firstAIEtlResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV010firstAIEtlF0AA0iF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV010firstAIEtlF0AA0iF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV010firstAIEtlF0AA0iF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV010firstAIEtlF0AA0iF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstAISummaryResult", + "printedName": "firstAISummaryResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV014firstAISummaryF0AA0iF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV014firstAISummaryF0AA0iF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV014firstAISummaryF0AA0iF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV014firstAISummaryF0AA0iF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allTranscriptText", + "printedName": "allTranscriptText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV17allTranscriptTextSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17allTranscriptTextSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17allTranscriptTextSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17allTranscriptTextSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptBySpeaker", + "printedName": "transcriptBySpeaker", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV19transcriptBySpeakerSDyS2SGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19transcriptBySpeakerSDyS2SGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV19transcriptBySpeakerSDyS2SGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19transcriptBySpeakerSDyS2SGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptTask", + "printedName": "transcriptTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14transcriptTaskAA0eiF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14transcriptTaskAA0eiF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14transcriptTaskAA0eiF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14transcriptTaskAA0eiF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlTask", + "printedName": "aiEtlTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV9aiEtlTaskAA0ejF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9aiEtlTaskAA0ejF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV9aiEtlTaskAA0ejF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9aiEtlTaskAA0ejF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryTask", + "printedName": "aiSummaryTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTaskAA0ejF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTaskAA0ejF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTaskAA0ejF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTaskAA0ejF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptDuration", + "printedName": "transcriptDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18transcriptDurations5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18transcriptDurations5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18transcriptDurations5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18transcriptDurations5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlDuration", + "printedName": "aiEtlDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiEtlDurations5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiEtlDurations5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiEtlDurations5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiEtlDurations5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryDurationSeconds", + "printedName": "aiSummaryDurationSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV24aiSummaryDurationSecondsSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV24aiSummaryDurationSecondsSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV24aiSummaryDurationSecondsSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV24aiSummaryDurationSecondsSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptDurationSeconds", + "printedName": "transcriptDurationSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV25transcriptDurationSecondsSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV25transcriptDurationSecondsSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV25transcriptDurationSecondsSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV25transcriptDurationSecondsSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlDurationSeconds", + "printedName": "aiEtlDurationSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiEtlDurationSecondsSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiEtlDurationSecondsSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiEtlDurationSecondsSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiEtlDurationSecondsSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSuccess", + "printedName": "isSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV9isSuccessSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9isSuccessSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV9isSuccessSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9isSuccessSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "segmentCount", + "printedName": "segmentCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12segmentCountSivp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12segmentCountSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12segmentCountSivg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12segmentCountSivg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allSpeakers", + "printedName": "allSpeakers", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV11allSpeakersSaySSGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11allSpeakersSaySSGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV11allSpeakersSaySSGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11allSpeakersSaySSGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "speakers", + "printedName": "speakers", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV8speakersSaySSGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8speakersSaySSGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV8speakersSaySSGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8speakersSaySSGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptTotalDuration", + "printedName": "transcriptTotalDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV23transcriptTotalDurationSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23transcriptTotalDurationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV23transcriptTotalDurationSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23transcriptTotalDurationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlSummary", + "printedName": "aiEtlSummary", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV12aiEtlSummarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12aiEtlSummarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV12aiEtlSummarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12aiEtlSummarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryText", + "printedName": "aiSummaryText", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTextSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTextSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTextSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTextSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryKeyPoints", + "printedName": "aiSummaryKeyPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18aiSummaryKeyPointsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18aiSummaryKeyPointsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18aiSummaryKeyPointsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18aiSummaryKeyPointsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryActionItems", + "printedName": "aiSummaryActionItems", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiSummaryActionItemsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiSummaryActionItemsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiSummaryActionItemsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiSummaryActionItemsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryParticipants", + "printedName": "aiSummaryParticipants", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV21aiSummaryParticipantsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV21aiSummaryParticipantsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV21aiSummaryParticipantsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV21aiSummaryParticipantsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryTemplate", + "printedName": "aiSummaryTemplate", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryTemplateSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryTemplateSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryTemplateSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryTemplateSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryModel", + "printedName": "aiSummaryModel", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV14aiSummaryModelSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14aiSummaryModelSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV14aiSummaryModelSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14aiSummaryModelSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryDuration", + "printedName": "aiSummaryDuration", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryDurationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryDurationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryDurationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryDurationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryHeadline", + "printedName": "aiSummaryHeadline", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryHeadlineSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryHeadlineSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryHeadlineSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryHeadlineSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryTopics", + "printedName": "aiSummaryTopics", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV15aiSummaryTopicsSayAA14AISummaryTopicVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV15aiSummaryTopicsSayAA14AISummaryTopicVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV15aiSummaryTopicsSayAA14AISummaryTopicVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV15aiSummaryTopicsSayAA14AISummaryTopicVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clinicalReport", + "printedName": "clinicalReport", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV14clinicalReportSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14clinicalReportSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV14clinicalReportSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14clinicalReportSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dealStatus", + "printedName": "dealStatus", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV10dealStatusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV10dealStatusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV10dealStatusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV10dealStatusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dealIntentionRating", + "printedName": "dealIntentionRating", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV19dealIntentionRatingSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19dealIntentionRatingSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV19dealIntentionRatingSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19dealIntentionRatingSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "communicationHighlight", + "printedName": "communicationHighlight", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV22communicationHighlightSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV22communicationHighlightSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV22communicationHighlightSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV22communicationHighlightSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "communicationSuggestion", + "printedName": "communicationSuggestion", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV23communicationSuggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23communicationSuggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV23communicationSuggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23communicationSuggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customerAppellation", + "printedName": "customerAppellation", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV19customerAppellationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19customerAppellationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV19customerAppellationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19customerAppellationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasAIEtlTask", + "printedName": "hasAIEtlTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12hasAIEtlTaskSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12hasAIEtlTaskSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12hasAIEtlTaskSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12hasAIEtlTaskSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasAISummaryTask", + "printedName": "hasAISummaryTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV16hasAISummaryTaskSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV16hasAISummaryTaskSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV16hasAISummaryTaskSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV16hasAISummaryTaskSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasTranscriptTask", + "printedName": "hasTranscriptTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV17hasTranscriptTaskSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17hasTranscriptTaskSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV17hasTranscriptTaskSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17hasTranscriptTaskSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskTypes", + "printedName": "taskTypes", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV9taskTypesSaySSGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9taskTypesSaySSGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV9taskTypesSaySSGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9taskTypesSaySSGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "embeddingsData", + "printedName": "embeddingsData", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14embeddingsDataSDySSSaySdGGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14embeddingsDataSDySSSaySdGGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14embeddingsDataSDySSSaySdGGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14embeddingsDataSDySSSaySdGGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEmbeddings", + "printedName": "hasEmbeddings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13hasEmbeddingsSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13hasEmbeddingsSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13hasEmbeddingsSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13hasEmbeddingsSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptStatusCode", + "printedName": "transcriptStatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20transcriptStatusCodeSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20transcriptStatusCodeSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20transcriptStatusCodeSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20transcriptStatusCodeSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowTaskResult", + "printedName": "WorkflowTaskResult", + "children": [ + { + "kind": "Var", + "name": "taskId", + "printedName": "taskId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskIdSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskIdSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskIdSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskIdSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskType", + "printedName": "taskType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV8taskTypeSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV8taskTypeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV8taskTypeSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV8taskTypeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6statusSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6statusSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6statusSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6statusSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV9startTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV9startTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV9startTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV9startTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV7endTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV7endTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV7endTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV7endTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "result", + "printedName": "result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AnyCodable?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6resultAA10AnyCodableVSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6resultAA10AnyCodableVSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AnyCodable?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6resultAA10AnyCodableVSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6resultAA10AnyCodableVSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(taskId:taskType:status:startTime:endTime:result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AnyCodable?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskId0H4Type6status9startTime03endM06resultACSS_S2Ss5Int64VSgAlA10AnyCodableVSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskId0H4Type6status9startTime03endM06resultACSS_S2Ss5Int64VSgAlA10AnyCodableVSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debugPrintTaskResult", + "printedName": "debugPrintTaskResult()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV010debugPrintfG0yyF", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV010debugPrintfG0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "transcriptResult", + "printedName": "transcriptResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV010transcriptG0AA010TranscriptG0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV010transcriptG0AA010TranscriptG0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV010transcriptG0AA010TranscriptG0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV010transcriptG0AA010TranscriptG0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlResult", + "printedName": "aiEtlResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV05aiEtlG0AA05AIEtlG0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV05aiEtlG0AA05AIEtlG0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV05aiEtlG0AA05AIEtlG0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV05aiEtlG0AA05AIEtlG0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryResult", + "printedName": "aiSummaryResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV09aiSummaryG0AA09AISummaryG0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV09aiSummaryG0AA09AISummaryG0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV09aiSummaryG0AA09AISummaryG0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV09aiSummaryG0AA09AISummaryG0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowParsingError", + "printedName": "WorkflowParsingError", + "children": [ + { + "kind": "Var", + "name": "missingRequiredField", + "printedName": "missingRequiredField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowParsingError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO20missingRequiredFieldyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO20missingRequiredFieldyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidDataStructure", + "printedName": "invalidDataStructure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowParsingError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO20invalidDataStructureyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO20invalidDataStructureyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "unsupportedFormat", + "printedName": "unsupportedFormat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowParsingError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO17unsupportedFormatyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO17unsupportedFormatyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "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:19PlaudDeviceBasicSDK20WorkflowParsingErrorO16errorDescriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO16errorDescriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK20WorkflowParsingErrorO16errorDescriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO16errorDescriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CryptoKit", + "printedName": "CryptoKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "AudioFileDecryptor", + "printedName": "AudioFileDecryptor", + "children": [ + { + "kind": "Function", + "name": "decryptAudioFile", + "printedName": "decryptAudioFile(inputPath:privateKeyPem:outputPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor(cm)decryptAudioFileWithInputPath:privateKeyPem:outputPath:error:", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC07decrypteF09inputPath13privateKeyPem06outputJ0S2S_S2SSgtKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "decryptAudioFileWithInputPath:privateKeyPem:outputPath:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptAudioToOgg", + "printedName": "decryptAudioToOgg(inputPath:privateKeyPem:outputPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18AudioFileDecryptorC07decryptE5ToOgg9inputPath13privateKeyPem06outputL0SSSgSS_SSAHtKFZ", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC07decryptE5ToOgg9inputPath13privateKeyPem06outputL0SSSgSS_SSAHtKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isFileEncrypted", + "printedName": "isFileEncrypted(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@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor(cm)isFileEncryptedWithPath:", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC02isF9Encrypted4pathSbSS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "isFileEncryptedWithPath:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getHeader", + "printedName": "getHeader(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor(cm)getHeaderWithPath:", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC9getHeader4pathAA0a7EncryptI0CSgSS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "getHeaderWithPath:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioFileDecryptor", + "printedName": "PlaudDeviceBasicSDK.AudioFileDecryptor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "AudioDecryptorError", + "printedName": "AudioDecryptorError", + "children": [ + { + "kind": "Var", + "name": "invalidHeader", + "printedName": "invalidHeader", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioDecryptorError.Type) -> PlaudDeviceBasicSDK.AudioDecryptorError", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError@AudioDecryptorErrorInvalidHeader", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO13invalidHeaderyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "invalidSymmetricKey", + "printedName": "invalidSymmetricKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioDecryptorError.Type) -> PlaudDeviceBasicSDK.AudioDecryptorError", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError@AudioDecryptorErrorInvalidSymmetricKey", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO19invalidSymmetricKeyyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "noEncryptedData", + "printedName": "noEncryptedData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioDecryptorError.Type) -> PlaudDeviceBasicSDK.AudioDecryptorError", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError@AudioDecryptorErrorNoEncryptedData", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO15noEncryptedDatayA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "decryptionFailed", + "printedName": "decryptionFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioDecryptorError.Type) -> PlaudDeviceBasicSDK.AudioDecryptorError", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError@AudioDecryptorErrorDecryptionFailed", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO16decryptionFailedyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError?", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_nsErrorDomain", + "printedName": "_nsErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO03_nsG6DomainSSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO03_nsG6DomainSSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO03_nsG6DomainSSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO03_nsG6DomainSSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "_BridgedNSError", + "printedName": "_BridgedNSError", + "usr": "s:10Foundation15_BridgedNSErrorP", + "mangledName": "$s10Foundation15_BridgedNSErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeableError", + "printedName": "_ObjectiveCBridgeableError", + "usr": "s:10Foundation26_ObjectiveCBridgeableErrorP", + "mangledName": "$s10Foundation26_ObjectiveCBridgeableErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ChaCha20", + "printedName": "ChaCha20", + "children": [ + { + "kind": "Function", + "name": "decrypt", + "printedName": "decrypt(data: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:19PlaudDeviceBasicSDK8ChaCha20C7decrypt4data3key5nonce7counter10Foundation4DataVAK_A2Ks6UInt32VtKFZ", + "mangledName": "$s19PlaudDeviceBasicSDK8ChaCha20C7decrypt4data3key5nonce7counter10Foundation4DataVAK_A2Ks6UInt32VtKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifyRFC7539TestVector", + "printedName": "verifyRFC7539TestVector()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK8ChaCha20C23verifyRFC7539TestVectorSbyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK8ChaCha20C23verifyRFC7539TestVectorSbyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK8ChaCha20C", + "mangledName": "$s19PlaudDeviceBasicSDK8ChaCha20C", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "ChaCha20Error", + "printedName": "ChaCha20Error", + "children": [ + { + "kind": "Var", + "name": "invalidKeyLength", + "printedName": "invalidKeyLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.ChaCha20Error.Type) -> PlaudDeviceBasicSDK.ChaCha20Error", + "children": [ + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO16invalidKeyLengthyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO16invalidKeyLengthyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidNonceLength", + "printedName": "invalidNonceLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.ChaCha20Error.Type) -> PlaudDeviceBasicSDK.ChaCha20Error", + "children": [ + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO18invalidNonceLengthyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO18invalidNonceLengthyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + }, + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO2eeoiySbAC_ACtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK13ChaCha20ErrorO9hashValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO9hashValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO9hashValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO9hashValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK13ChaCha20ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OggOpusParser", + "printedName": "OggOpusParser", + "children": [ + { + "kind": "Function", + "name": "resetDecoder", + "printedName": "resetDecoder()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(cm)resetDecoder", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC12resetDecoderyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "parsedSampleRate", + "printedName": "parsedSampleRate", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(py)parsedSampleRate", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC16parsedSampleRateSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)parsedSampleRate", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC16parsedSampleRateSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parsedChannels", + "printedName": "parsedChannels", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(py)parsedChannels", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC14parsedChannelsSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)parsedChannels", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC14parsedChannelsSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parsedPreSkip", + "printedName": "parsedPreSkip", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(py)parsedPreSkip", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC13parsedPreSkipSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)parsedPreSkip", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC13parsedPreSkipSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)parse:", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC5parseySay10Foundation4DataVGAGF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OggOpusParser", + "printedName": "PlaudDeviceBasicSDK.OggOpusParser", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDownloadFormat", + "children": [ + { + "kind": "Var", + "name": "pcm", + "printedName": "pcm", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDownloadFormat.Type) -> PlaudDeviceBasicSDK.PlaudDownloadFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat@PlaudDownloadFormatPcm", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO3pcmyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "mp3", + "printedName": "mp3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDownloadFormat.Type) -> PlaudDeviceBasicSDK.PlaudDownloadFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat@PlaudDownloadFormatMp3", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO3mp3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "wav", + "printedName": "wav", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDownloadFormat.Type) -> PlaudDeviceBasicSDK.PlaudDownloadFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat@PlaudDownloadFormatWav", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO3wavyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "AudioExportFormat", + "printedName": "AudioExportFormat", + "children": [ + { + "kind": "Var", + "name": "pcm", + "printedName": "pcm", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioExportFormat.Type) -> PlaudDeviceBasicSDK.AudioExportFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat@AudioExportFormatPcm", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO3pcmyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "mp3", + "printedName": "mp3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioExportFormat.Type) -> PlaudDeviceBasicSDK.AudioExportFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat@AudioExportFormatMp3", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO3mp3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "wav", + "printedName": "wav", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioExportFormat.Type) -> PlaudDeviceBasicSDK.AudioExportFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat@AudioExportFormatWav", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO3wavyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "opus", + "printedName": "opus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioExportFormat.Type) -> PlaudDeviceBasicSDK.AudioExportFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat@AudioExportFormatOpus", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO4opusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "fileExtension", + "printedName": "fileExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17AudioExportFormatO13fileExtensionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO13fileExtensionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK17AudioExportFormatO13fileExtensionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO13fileExtensionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat?", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "AudioExportCallback", + "printedName": "AudioExportCallback", + "children": [ + { + "kind": "Function", + "name": "onProgress", + "printedName": "onProgress(_:message:)", + "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@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback(im)onProgress:message:", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioExportCallbackP10onProgress_7messageySi_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.AudioExportCallback>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onComplete", + "printedName": "onComplete(outputPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback(im)onCompleteWithOutputPath:", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioExportCallbackP10onComplete10outputPathySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.AudioExportCallback>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onError", + "printedName": "onError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback(im)onError:", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioExportCallbackP7onErroryySSF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.AudioExportCallback>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioExportCallbackP", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudBleDevice", + "printedName": "PlaudBleDevice", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sn:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudBleDevice", + "printedName": "PlaudDeviceBasicSDK.PlaudBleDevice", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudBleDevice" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudBleDevice(im)initWithSn:", + "mangledName": "$s19PlaudDeviceBasicSDK0a3BleB0C2snACSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithSn:", + "declAttributes": [ + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(peripheral:rssi:manufacturerData:localName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudBleDevice", + "printedName": "PlaudDeviceBasicSDK.PlaudBleDevice", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudBleDevice" + }, + { + "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:19PlaudDeviceBasicSDK0a3BleB0C10peripheral4rssi16manufacturerData9localNameACSo12CBPeripheralC_So8NSNumberC10Foundation0I0VSSSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0a3BleB0C10peripheral4rssi16manufacturerData9localNameACSo12CBPeripheralC_So8NSNumberC10Foundation0I0VSSSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudBleDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0a3BleB0C", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@PlaudBleSDK@objc(cs)BleDevice", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "PlaudBleSDK.BleDevice", + "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": "PlaudDeviceAgentProtocol", + "printedName": "PlaudDeviceAgentProtocol", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleAppKeyStateWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleAppKeyState6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleAppKeyStateWithResult:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blePenState", + "printedName": "blePenState(state:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP11blePenState5state7privacy03keyI05uDisk11findMyToken10hasSndpKey012deviceAccessP0ySi_S6itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDeviceNameWithName:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP03bleB4Name4nameySSSg_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDeviceNameWithName:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleScanResultWithBleDevices:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleScanResult0G7DevicesySay0a3BleD00kB0CG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleScanResultWithBleDevices:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleScanOverTime", + "printedName": "bleScanOverTime()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleScanOverTime", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleScanOverTimeyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleConnectStateWithState:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleConnectState5stateySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleConnectStateWithState:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleBindWithSn:status:protVersion:timezone:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP7bleBind2sn6status11protVersion8timezoneySSSg_S3itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleBindWithSn:status:protVersion:timezone:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleMicGain:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP10bleMicGainyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleStorageWithTotal:free:duration:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP10bleStorage5total4free8durationySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleStorageWithTotal:free:duration:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)blePowerChangeWithPower:oldPower:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14blePowerChange5power03oldH0ySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "blePowerChangeWithPower:oldPower:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleChargingStateWithIsCharging:level:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP16bleChargingState02isH05levelySb_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleChargingStateWithIsCharging:level:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleFileListWithBleFiles:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP11bleFileList0G5FilesySay0a3BleD00kH0CG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleFileListWithBleFiles:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleRecordStart", + "printedName": "bleRecordStart(sessionId:start:status:scene:startTime:reason:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRecordStartWithSessionId:start:status:scene:startTime:reason:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleRecordStart9sessionId5start6status5scene0L4Time6reasonySi_S5itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRecordStartWithSessionId:start:status:scene:startTime:reason:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRecordStopWithSessionId:reason:fileExist:fileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleRecordStop9sessionId6reason9fileExist0M4SizeySi_SiSbSitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRecordStopWithSessionId:reason:fileExist:fileSize:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRecordPauseWithSessionId:reason:fileExist:fileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleRecordPause9sessionId6reason9fileExist0M4SizeySi_SiSbSitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRecordPauseWithSessionId:reason:fileExist:fileSize:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRecordResumeWithSessionId:start:status:scene:startTime:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleRecordResume9sessionId5start6status5scene0L4TimeySi_S4itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRecordResumeWithSessionId:start:status:scene:startTime:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleSyncFileHeadWithSessionId:status:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleSyncFileHead9sessionId6statusySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleSyncFileHeadWithSessionId:status:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleSyncFileTailWithSessionId:crc:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleSyncFileTail9sessionId3crcySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleSyncFileTailWithSessionId:crc:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDataWithSessionId:start:data:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP7bleData9sessionId5start4dataySi_Si10Foundation0H0VtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDataWithSessionId:start:data:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)blePcmDataWithSessionId:millsec:pcmData:isMusic:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP10blePcmData9sessionId7millsec03pcmI07isMusicySi_Si10Foundation0I0VSbtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "blePcmDataWithSessionId:millsec:pcmData:isMusic:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDataComplete", + "printedName": "bleDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDataComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleDataCompleteyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDecodeFailWithStart:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleDecodeFail5startySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDecodeFailWithStart:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleSyncFileStop", + "printedName": "bleSyncFileStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleSyncFileStop", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleSyncFileStopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDownloadFile", + "printedName": "bleDownloadFile(sessionId:desiredOutputPath:status:progress:tips:)", + "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": "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": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDownloadFileWithSessionId:desiredOutputPath:status:progress:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleDownloadFile9sessionId17desiredOutputPath6status8progress4tipsySi_SSS2iSStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDownloadFileWithSessionId:desiredOutputPath:status:progress:tips:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDownloadFileStop", + "printedName": "bleDownloadFileStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDownloadFileStop", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP19bleDownloadFileStopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDeleteFileWithSessionId:status:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleDeleteFile9sessionId6statusySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDeleteFileWithSessionId:status:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDepair:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP9bleDepairyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncConfigReceived", + "printedName": "onWifiSyncConfigReceived(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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncConfigReceivedWithIndex:ssid:password:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP24onWifiSyncConfigReceived5index4ssid8passwordys6UInt32V_S2StF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncConfigReceivedWithIndex:ssid:password:", + "declAttributes": [ + "Optional", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncConfigSet", + "printedName": "onWifiSyncConfigSet(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncConfigSetWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP19onWifiSyncConfigSet6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncConfigSetWithResult:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncListReceived", + "printedName": "onWifiSyncListReceived(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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncListReceivedWithList:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP22onWifiSyncListReceived4listySays6UInt32VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncListReceivedWithList:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncDeleteResult", + "printedName": "onWifiSyncDeleteResult(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncDeleteResultWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP22onWifiSyncDeleteResult6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncDeleteResultWithResult:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncTestStarted", + "printedName": "onWifiSyncTestStarted(index:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncTestStartedWithIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP21onWifiSyncTestStarted5indexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncTestStartedWithIndex:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncWillStart", + "printedName": "onWifiSyncWillStart(seconds:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncWillStartWithSeconds:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP19onWifiSyncWillStart7secondsySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncWillStartWithSeconds:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncTestResult", + "printedName": "onWifiSyncTestResult(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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncTestResultWithIndex:result:rawCode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP20onWifiSyncTestResult5index6result7rawCodeys6UInt32V_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncTestResultWithIndex:result:rawCode:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncUrl", + "printedName": "onWifiSyncUrl(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncUrlWithUrl:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13onWifiSyncUrl3urlySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncUrlWithUrl:", + "declAttributes": [ + "Optional", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiRssiRequestConfirmed", + "printedName": "onWifiRssiRequestConfirmed(status:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiRssiRequestConfirmedWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP26onWifiRssiRequestConfirmed6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiRssiRequestConfirmedWithStatus:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSdkFetchPermissionResult", + "printedName": "onSdkFetchPermissionResult(pass:tips:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onSdkFetchPermissionResultWithPass:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP26onSdkFetchPermissionResult4pass4tipsySb_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onSdkFetchPermissionResultWithPass:tips:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSdkCheckPermissionResult", + "printedName": "onSdkCheckPermissionResult(pass:tips:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onSdkCheckPermissionResultWithPass:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP26onSdkCheckPermissionResult4pass4tipsySb_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onSdkCheckPermissionResultWithPass:tips:", + "declAttributes": [ + "Optional", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSdkCheckResourceResult", + "printedName": "onSdkCheckResourceResult(pass:tips:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onSdkCheckResourceResultWithPass:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP24onSdkCheckResourceResult4pass4tipsySb_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onSdkCheckResourceResultWithPass:tips:", + "declAttributes": [ + "Optional", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncEnabled", + "printedName": "onWifiSyncEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP17onWifiSyncEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onCommonMsgChannel", + "printedName": "onCommonMsgChannel(type:value:tips:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onCommonMsgChannelWithType:value:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP18onCommonMsgChannel4type5value4tipsySi_SiSStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onCommonMsgChannelWithType:value:tips:", + "declAttributes": [ + "Optional", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleWiFiOpen::::", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP11bleWiFiOpenyySi_S3StF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleFotaResultWithUid:status:errmsg:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleFotaResult3uid6status6errmsgySi_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleFotaResultWithUid:status:errmsg:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleFotaPackReqWithUid:start:end:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleFotaPackReq3uid5start3endySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleFotaPackReqWithUid:start:end:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleFotaPackFinWithUid:status:errmsg:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleFotaPackFin3uid6status6errmsgySi_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleFotaPackFinWithUid:status:errmsg:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleOtaDataSendFail", + "printedName": "bleOtaDataSendFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleOtaDataSendFail", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP18bleOtaDataSendFailyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleSetActiveWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP12bleSetActive6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleSetActiveWithStatus:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleCommonSetting", + "printedName": "bleCommonSetting(setting:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleCommonSettingWithSetting:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP16bleCommonSetting7settingySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleCommonSettingWithSetting:", + "declAttributes": [ + "Optional", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRateWithLossRate:rate:instantRate:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP7bleRate04lossH04rate07instantH0ySd_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRateWithLossRate:rate:instantRate:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceAgent", + "printedName": "PlaudDeviceAgent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDeviceAgent", + "printedName": "PlaudDeviceBasicSDK.PlaudDeviceAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDeviceAgent", + "printedName": "PlaudDeviceBasicSDK.PlaudDeviceAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bleAgent", + "printedName": "bleAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudBleSDK.BleAgent?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleAgent", + "printedName": "PlaudBleSDK.BleAgent", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudBleSDK.BleAgent?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleAgent", + "printedName": "PlaudBleSDK.BleAgent", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudBleSDK.BleAgent?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleAgent", + "printedName": "PlaudBleSDK.BleAgent", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvs", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recentConnectDevice", + "printedName": "recentConnectDevice", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)recentConnectDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)recentConnectDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setRecentConnectDevice:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sceneFlag", + "printedName": "sceneFlag", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)sceneFlag", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9sceneFlagSivp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)sceneFlag", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9sceneFlagSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isWiFiTransferActive", + "printedName": "isWiFiTransferActive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)isWiFiTransferActive", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20isWiFiTransferActiveSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)isWiFiTransferActive", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20isWiFiTransferActiveSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "skipPermissionCheck", + "printedName": "skipPermissionCheck", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)skipPermissionCheck", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)skipPermissionCheck", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setSkipPermissionCheck:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvM", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol)?" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)delegate", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDeviceAgentProtocol", + "printedName": "any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)delegate", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDeviceAgentProtocol", + "printedName": "any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDelegate:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "initSDK", + "printedName": "initSDK(userAccessToken:customDomain:extra:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)initSDKWithUserAccessToken:customDomain:extra:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC04initD015userAccessToken12customDomain5extraySS_SSSDyS2SGtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "initSDKWithUserAccessToken:customDomain:extra:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initSDK", + "printedName": "initSDK(hostName:appKey:appSecret:bindToken:extra:customDomain:partnerToken:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)initSDKWithHostName:appKey:appSecret:bindToken:extra:customDomain:partnerToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC04initD08hostName6appKey0I6Secret9bindToken5extra12customDomain07partnerM0ySS_S3SSDyS2SGSSSgAMtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "initSDKWithHostName:appKey:appSecret:bindToken:extra:customDomain:partnerToken:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUserAccessToken", + "printedName": "setUserAccessToken(_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setUserAccessToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18setUserAccessTokenyySSSgF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPartnerToken", + "printedName": "setPartnerToken(_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setPartnerToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15setPartnerTokenyySSSgF", + "moduleName": "PlaudDeviceBasicSDK", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPartnerApiManager", + "printedName": "getPartnerApiManager()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiManager", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiManager", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC20getPartnerApiManagerAA0aghI0CyF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20getPartnerApiManagerAA0aghI0CyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPartnerDataReady", + "printedName": "isPartnerDataReady()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)isPartnerDataReady", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18isPartnerDataReadySbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTestAppKey", + "printedName": "getTestAppKey(_:)", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(cm)getTestAppKey:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13getTestAppKeyySSSbFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTestAppSecret", + "printedName": "getTestAppSecret(_:)", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(cm)getTestAppSecret:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16getTestAppSecretySSSbFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)depairWithClear:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC6depair5clearySb_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "depairWithClear:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDeviceWiFi", + "printedName": "setDeviceWiFi(open:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDeviceWiFiWithOpen:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03setB4WiFi4openySb_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setDeviceWiFiWithOpen:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endWiFiTransfer", + "printedName": "endWiFiTransfer()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)endWiFiTransfer", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15endWiFiTransferyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDeviceBinding", + "printedName": "setDeviceBinding(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDeviceBindingWithToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03setB7Binding5tokenySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setDeviceBindingWithToken:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startScan", + "printedName": "startScan()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)startScan", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9startScanyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopScan", + "printedName": "stopScan()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)stopScan", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8stopScanyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConnected", + "printedName": "isConnected()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)isConnected", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11isConnectedSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectBleDevice", + "printedName": "connectBleDevice(bleDevice:deviceToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)connectBleDeviceWithBleDevice:deviceToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC010connectBleB003bleB011deviceTokeny0agD00gB0C_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "connectBleDeviceWithBleDevice:deviceToken:", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)connectBleDeviceWithBleDevice:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC010connectBleB003bleB0y0agD00gB0C_tF", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)disconnect", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10disconnectyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "tryReconnectLastDevice", + "printedName": "tryReconnectLastDevice()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)tryReconnectLastDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC016tryReconnectLastB0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getState", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8getStateyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getStorage", + "printedName": "getStorage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getStorage", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10getStorageyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiSyncEnable", + "printedName": "getWifiSyncEnable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getWifiSyncEnable", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17getWifiSyncEnableyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setWifiSyncEnable", + "printedName": "setWifiSyncEnable(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setWifiSyncEnableWithValue:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17setWifiSyncEnable5valueySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setWifiSyncEnableWithValue:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setWifiSyncTest", + "printedName": "setWifiSyncTest(wifiIndex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setWifiSyncTestWithWifiIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15setWifiSyncTest9wifiIndexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setWifiSyncTestWithWifiIndex:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiSyncTestResult", + "printedName": "getWifiSyncTestResult(wifiIndex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getWifiSyncTestResultWithWifiIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC21getWifiSyncTestResult9wifiIndexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getWifiSyncTestResultWithWifiIndex:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChargingState", + "printedName": "getChargingState()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getChargingState", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16getChargingStateyyF", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setMicGainWithValue:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10setMicGain5valueySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setMicGainWithValue:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readMicGain", + "printedName": "readMicGain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)readMicGain", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11readMicGainyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUDiskMode", + "printedName": "setUDiskMode(onOff:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setUDiskModeOnOff:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12setUDiskMode5onOffySb_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setUDiskModeOnOff:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkIsRecording", + "printedName": "checkIsRecording()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)checkIsRecording", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16checkIsRecordingSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkIsDownloading", + "printedName": "checkIsDownloading()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)checkIsDownloading", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18checkIsDownloadingSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startRecord", + "printedName": "startRecord()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)startRecord", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11startRecordyyF", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDeviceActiveWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03setB6Active6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setDeviceActiveWithStatus:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopRecord", + "printedName": "stopRecord()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)stopRecord", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10stopRecordyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDeviceName", + "printedName": "setDeviceName(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDeviceName:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03setB4NameyySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentSessionID", + "printedName": "getCurrentSessionID()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getCurrentSessionID", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19getCurrentSessionIDSiyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pauseRecord", + "printedName": "pauseRecord()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)pauseRecord", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11pauseRecordyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resumeRecord", + "printedName": "resumeRecord()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)resumeRecord", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12resumeRecordyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFileList", + "printedName": "getFileList(startSessionId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getFileListWithStartSessionId:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11getFileList14startSessionIdySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getFileListWithStartSessionId:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFile", + "printedName": "getFile(sessionId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getFileWithSessionId:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC7getFile9sessionIdySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getFileWithSessionId:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "syncFile", + "printedName": "syncFile(sessionId: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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)syncFileWithSessionId:start:end:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8syncFile9sessionId5start3endySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "syncFileWithSessionId:start:end:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadFile", + "printedName": "downloadFile(sessionId:desiredOutputPath:format:)", + "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": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "hasDefaultArg": true, + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)downloadFileWithSessionId:desiredOutputPath:format:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12downloadFile9sessionId17desiredOutputPath6formatySi_SSAA0A14DownloadFormatOtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "downloadFileWithSessionId:desiredOutputPath:format:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopDownloadFile", + "printedName": "stopDownloadFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)stopDownloadFile", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16stopDownloadFileyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exportAudio", + "printedName": "exportAudio(sessionId:outputDir:format:channels:callback:)", + "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": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "AudioExportCallback", + "printedName": "any PlaudDeviceBasicSDK.AudioExportCallback", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)exportAudioWithSessionId:outputDir:format:channels:callback:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11exportAudio9sessionId9outputDir6format8channels8callbackySi_SSAA0G12ExportFormatOSiAA0gO8Callback_ptF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "exportAudioWithSessionId:outputDir:format:channels:callback:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSupportedExportFormats", + "printedName": "getSupportedExportFormats()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AudioExportFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC25getSupportedExportFormatsSayAA05AudioH6FormatOGyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC25getSupportedExportFormatsSayAA05AudioH6FormatOGyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSyncFile", + "printedName": "stopSyncFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)stopSyncFile", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12stopSyncFileyyF", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)deleteFileWithSessionId:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10deleteFile9sessionIdySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "deleteFileWithSessionId:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAllFiles", + "printedName": "clearAllFiles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)clearAllFiles", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13clearAllFilesyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restoreFactory", + "printedName": "restoreFactory()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)restoreFactory", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14restoreFactoryyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiSyncConfig", + "printedName": "getWifiSyncConfig(wifiIndex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getWifiSyncConfigWithWifiIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17getWifiSyncConfig9wifiIndexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getWifiSyncConfigWithWifiIndex:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setWifiSyncConfig", + "printedName": "setWifiSyncConfig(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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setWifiSyncConfigWithOperation:wifiIndex:ssid:password:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17setWifiSyncConfig9operation9wifiIndex4ssid8passwordySi_s6UInt32VS2StF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setWifiSyncConfigWithOperation:wifiIndex:ssid:password:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiSyncList", + "printedName": "getWifiSyncList()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getWifiSyncList", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15getWifiSyncListyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteWifiSyncConfig", + "printedName": "deleteWifiSyncConfig(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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)deleteWifiSyncConfigWithWifiIndices:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20deleteWifiSyncConfig11wifiIndicesySays6UInt32VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "deleteWifiSyncConfigWithWifiIndices:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleScanResultWithBleDevices:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleScanResult0F7DevicesySay0a3BleD00jB0CG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleScanResultWithBleDevices:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleScanOverTime", + "printedName": "bleScanOverTime()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleScanOverTime", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleScanOverTimeyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleScanOverTime", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAppKeyStateWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleAppKeyState6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAppKeyStateWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleConnectStateWithState:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleConnectState5stateySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleConnectStateWithState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleBindWithSn:status:protVersion:timezone:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC7bleBind2sn6status11protVersion8timezoneySSSg_S3itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleBindWithSn:status:protVersion:timezone:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:versionType:versionCode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11blePenState5state7privacy03keyH05uDisk11findMyToken10hasSndpKey012deviceAccessO011versionType0U4CodeySi_S6iSSSitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:versionType:versionCode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleStorageWithTotal:free:duration:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleStorage5total4free8durationySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleStorageWithTotal:free:duration:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePowerChangeWithPower:oldPower:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14blePowerChange5power03oldG0ySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePowerChangeWithPower:oldPower:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleChargingStateWithIsCharging:level:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleChargingState02isG05levelySb_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleChargingStateWithIsCharging:level:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFileListWithBleFiles:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleFileList0F5FilesySay0a3BleD00jG0CG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFileListWithBleFiles:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDataComplete", + "printedName": "bleDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDataComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleDataCompleteyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDataComplete", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordStartWithSessionId:start:status:scene:startTime:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleRecordStart9sessionId5start6status5scene0K4TimeySi_S4itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordStartWithSessionId:start:status:scene:startTime:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordStopWithSessionId:reason:fileExist:fileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleRecordStop9sessionId6reason9fileExist0L4SizeySi_SiSbSitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordStopWithSessionId:reason:fileExist:fileSize:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordPauseWithSessionId:reason:fileExist:fileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleRecordPause9sessionId6reason9fileExist0L4SizeySi_SiSbSitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordPauseWithSessionId:reason:fileExist:fileSize:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordResumeWithSessionId:start:status:scene:startTime:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleRecordResume9sessionId5start6status5scene0K4TimeySi_S4itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordResumeWithSessionId:start:status:scene:startTime:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSyncFileHeadWithSessionId:status:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleSyncFileHead9sessionId6statusySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSyncFileHeadWithSessionId:status:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSyncFileTailWithSessionId:crc:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleSyncFileTail9sessionId3crcySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSyncFileTailWithSessionId:crc:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDataWithSessionId:start:data:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC7bleData9sessionId5start4dataySi_Si10Foundation0G0VtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDataWithSessionId:start:data:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePcmDataWithSessionId:millsec:pcmData:isMusic:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10blePcmData9sessionId7millsec03pcmH07isMusicySi_Si10Foundation0H0VSbtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePcmDataWithSessionId:millsec:pcmData:isMusic:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDecodeFailWithStart:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleDecodeFail5startySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDecodeFailWithStart:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleSyncFileStop", + "printedName": "bleSyncFileStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSyncFileStop", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleSyncFileStopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSyncFileStop", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDeleteFileWithSessionId:status:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleDeleteFile9sessionId6statusySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDeleteFileWithSessionId:status:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDepair:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9bleDepairyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDepair:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleMicGain:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleMicGainyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleMicGain:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiConfigReceivedWithIndex:ssid:password:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC28onSyncIdleWifiConfigReceived5index4ssid8passwordys6UInt32V_S2StF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiConfigReceivedWithIndex:ssid:password:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiConfigSetWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC23onSyncIdleWifiConfigSet6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiConfigSetWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiListReceivedWithList:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC26onSyncIdleWifiListReceived4listySays6UInt32VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiListReceivedWithList:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiDeleteResultWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC26onSyncIdleWifiDeleteResult6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiDeleteResultWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiTestStartedWithIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC25onSyncIdleWifiTestStarted5indexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiTestStartedWithIndex:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWillStartWithSeconds:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19onSyncIdleWillStart7secondsySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWillStartWithSeconds:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiTestResultWithIndex:result:rawCode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC24onSyncIdleWifiTestResult5index6result7rawCodeys6UInt32V_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiTestResultWithIndex:result:rawCode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiRssiRequestConfirmed", + "printedName": "onWifiRssiRequestConfirmed(status:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC26onWifiRssiRequestConfirmed6statusySi_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC26onWifiRssiRequestConfirmed6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSyncWhenIdleEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC22bleSyncWhenIdleEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSyncWhenIdleEnabled:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleUDiskErrWithFuncName:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleUDiskErr8funcNameySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleUDiskErrWithFuncName:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleWiFiOpen::::", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleWiFiOpenyySi_S3StF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleWiFiOpen::::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDeviceNameWithName:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleB4Name4nameySSSg_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDeviceNameWithName:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFotaResultWithUid:status:errmsg:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleFotaResult3uid6status6errmsgySi_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFotaResultWithUid:status:errmsg:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFotaPackReqWithUid:start:end:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleFotaPackReq3uid5start3endySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFotaPackReqWithUid:start:end:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFotaPackFinWithUid:status:errmsg:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleFotaPackFin3uid6status6errmsgySi_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFotaPackFinWithUid:status:errmsg:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleOtaDataSendFail", + "printedName": "bleOtaDataSendFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleOtaDataSendFail", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18bleOtaDataSendFailyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleOtaDataSendFail", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRateWithLossRate:rate:instantRate:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC7bleRate04lossG04rate07instantG0ySd_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRateWithLossRate:rate:instantRate:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSetActiveWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12bleSetActive6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSetActiveWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleCommonSetting", + "printedName": "bleCommonSetting(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16bleCommonSettingyySiF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleCommonSettingyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleHeartbeatWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12bleHeartbeat6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleHeartbeatWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleBatteryMode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleBatteryModeyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleBatteryMode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDeviceStatusWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleB6Status6statusySays5UInt8VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDeviceStatusWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleNewFeatureWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleNewFeature4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleNewFeatureWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleGetRecordMarkingTagsWithUid:totals:index:tags:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC23bleGetRecordMarkingTags3uid6totals5index4tagsySi_S2iSay0a3BleD00ohI3TagCGtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleGetRecordMarkingTagsWithUid:totals:index:tags:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)deviceLogDataWithStart:data:logType:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13deviceLogData5start4data7logTypeySi_10Foundation0H0VSitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "deviceLogDataWithStart:data:logType:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onGetDeviceLogListWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC05onGetB7LogList4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onGetDeviceLogListWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncDeviceLogStartWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC06onSyncB8LogStart4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncDeviceLogStartWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSyncDeviceLogStop", + "printedName": "onSyncDeviceLogStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncDeviceLogStop", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC06onSyncB7LogStopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncDeviceLogStop", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncDeviceLogEndWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC06onSyncB6LogEnd4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncDeviceLogEndWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onDeviceLogDeletedWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC02onB10LogDeleted4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onDeviceLogDeletedWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleUpdatePowerLowErr", + "printedName": "bleUpdatePowerLowErr()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleUpdatePowerLowErr", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20bleUpdatePowerLowErryyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleUpdatePowerLowErr", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDeviceDisconnectErr", + "printedName": "bleDeviceDisconnectErr()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDeviceDisconnectErr", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleB13DisconnectErryyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDeviceDisconnectErr", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleStateWithPowered:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8bleState7poweredySb_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleStateWithPowered:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleHandshakeWaitWithTimeout:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleHandshakeWait7timeoutySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleHandshakeWaitWithTimeout:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePenTimeWithStamp:timezone:zoneMin:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10blePenTime5stamp8timezone7zoneMinySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePenTimeWithStamp:timezone:zoneMin:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePasswordResetWithPassword:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16blePasswordReset8passwordySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePasswordResetWithPassword:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleBacklightDuration:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20bleBacklightDurationyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleBacklightDuration:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleBacklightBright:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18bleBacklightBrightyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleBacklightBright:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleLanguage:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleLanguageyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleLanguage:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecScene:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleRecSceneyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecScene:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecMode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleRecModeyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecMode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVadSensitivity:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17bleVadSensitivityyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVadSensitivity:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVpuGain:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleVpuGainyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVpuGain:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSwitchHandler:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleSwitchHandleryySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSwitchHandler:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAutoPowerOff:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleAutoPowerOffyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAutoPowerOff:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRawWaveEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17bleRawWaveEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRawWaveEnabled:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordingAfterDisConnetEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC33bleRecordingAfterDisConnetEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordingAfterDisConnetEnabled:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFindMyState:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleFindMyStateyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFindMyState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVPUCLKState:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleVPUCLKStateyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVPUCLKState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleStopRecordingAfterCharging:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC29bleStopRecordingAfterChargingyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleStopRecordingAfterCharging:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAutoClear:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12bleAutoClearyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAutoClear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVad:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC6bleVadyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVad:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleWiFiClose:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12bleWiFiCloseyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleWiFiClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSetWiFiSsidWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleSetWiFiSsid6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSetWiFiSsidWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleGetWiFiSsidWithStatus:ssid:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleGetWiFiSsid6status4ssidySi_SSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleGetWiFiSsidWithStatus:ssid:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVoiceAbnormalWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleVoiceAbnormal6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVoiceAbnormalWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleWebsocketProfile::", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19bleWebsocketProfileyySi_SSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleWebsocketProfile::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleWebsocketTest:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleWebsocketTestyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleWebsocketTest:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleLedStateOnOff:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleLedState5onOffySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleLedStateOnOff:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSetLedStateOnOff:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleSetLedState5onOffySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSetLedStateOnOff:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleMarkingWithSessionId:status:markList:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleMarking9sessionId6status8markListySi_SiSays6UInt32VGtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleMarkingWithSessionId:status:markList:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAnglesWithPitchAngle:rollbackAngle:yawAngle:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9bleAngles10pitchAngle08rollbackI003yawI0ySf_S2ftF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAnglesWithPitchAngle:rollbackAngle:yawAngle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePrivacyWithPrivacy:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10blePrivacy7privacyySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePrivacyWithPrivacy:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleClearAllFileWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleClearAllFile6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleClearAllFileWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAlarmRecWithStart:duration:repeatMode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleAlarmRec5start8duration10repeatModeySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAlarmRecWithStart:duration:repeatMode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onResetFindmyResultWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19onResetFindmyResult6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onResetFindmyResultWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onCommonParamsSetResultWithSuccess:dataType:value:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC23onCommonParamsSetResult7success8dataType5valueySb_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onCommonParamsSetResultWithSuccess:dataType:value:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onCommonParamsGetResultWithSuccess:dataType:value:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC23onCommonParamsGetResult7success8dataType5valueySb_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onCommonParamsGetResultWithSuccess:dataType:value:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSetSoundPlusTokenResultWithLicenseKey:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC25onSetSoundPlusTokenResult10licenseKeyySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSetSoundPlusTokenResultWithLicenseKey:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onGetSDFlashCIDResultWithCid:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC21onGetSDFlashCIDResult3cidySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onGetSDFlashCIDResultWithCid:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reportDeviceMetadata", + "printedName": "reportDeviceMetadata()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)reportDeviceMetadata", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC06reportB8MetadatayyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFirmwareUpdate", + "printedName": "checkFirmwareUpdate(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwareCheckResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PlaudFirmwareCheckResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareCheckResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)checkFirmwareUpdateWithCompletion:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19checkFirmwareUpdate10completionyyAA0aG11CheckResultCc_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "checkFirmwareUpdateWithCompletion:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startFirmwareUpdate", + "printedName": "startFirmwareUpdate(progress:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PlaudFirmwareUpdateResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)startFirmwareUpdateWithProgress:completion:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19startFirmwareUpdate8progress10completionyyAA0aG5PhaseO_Sftc_yAA0agH6ResultCctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "startFirmwareUpdateWithProgress:completion:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pushFirmwareFile", + "printedName": "pushFirmwareFile(filePath:toVersion:progress:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PlaudFirmwareUpdateResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)pushFirmwareFileWithFilePath:toVersion:progress:completion:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16pushFirmwareFile8filePath9toVersion8progress10completionySS_SSyAA0aG5PhaseO_SftcyAA0aG12UpdateResultCctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "pushFirmwareFileWithFilePath:toVersion:progress:completion:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendApiToken", + "printedName": "sendApiToken(token:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String)", + "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:19PlaudDeviceBasicSDK0aB5AgentC12sendApiToken5token8callbackySS_ySb_SStctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12sendApiToken5token8callbackySS_ySb_SStctF", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendBinaryFile", + "printedName": "sendBinaryFile(type:data:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String)", + "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:19PlaudDeviceBasicSDK0aB5AgentC14sendBinaryFile4type4data8callbackySi_10Foundation4DataVSgySb_SStctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14sendBinaryFile4type4data8callbackySi_10Foundation4DataVSgySb_SStctF", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onBinaryFileReqWithType:packageOffset:packageSize:endStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15onBinaryFileReq4type13packageOffset0K4Size9endStatusySi_S3itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onBinaryFileReqWithType:packageOffset:packageSize:endStatus:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onBinaryFileEndWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15onBinaryFileEnd6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onBinaryFileEndWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkDeviceState", + "printedName": "checkDeviceState(state:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:)", + "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" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC05checkB5State5state7privacy03keyG05uDisk11findMyToken10hasSndpKey012deviceAccessN0ySi_S6itF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC05checkB5State5state7privacy03keyG05uDisk11findMyToken10hasSndpKey012deviceAccessN0ySi_S6itF", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSDKCredentials", + "printedName": "clearSDKCredentials()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)clearSDKCredentials", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19clearSDKCredentialsyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quickUpdateCheck", + "printedName": "quickUpdateCheck(device:showUI:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BleDevice", + "printedName": "PlaudBleSDK.BleDevice", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16quickUpdateCheck6device6showUI10completiony0a3BleD00mB0C_SbyAA0G6StatusOctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16quickUpdateCheck6device6showUI10completiony0a3BleD00mB0C_SbyAA0G6StatusOctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quickUpdateCheck", + "printedName": "quickUpdateCheck(model:snType:versionType:showUI:completion:)", + "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": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool, Swift.String?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16quickUpdateCheck5model6snType07versionK06showUI10completionySS_S2SSbySb_SSSgtcSgtF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16quickUpdateCheck5model6snType07versionK06showUI10completionySS_S2SSbySb_SSSgtcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "silentUpdateCheck", + "printedName": "silentUpdateCheck(model:snType:versionType:completion:)", + "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, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "usr": "s:Sq" + }, + { + "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": "s:19PlaudDeviceBasicSDK0aB5AgentC17silentUpdateCheck5model6snType07versionK010completionySS_S2SySb_AA21LatestVersionResponseCSgs5Error_pSgtctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17silentUpdateCheck5model6snType07versionK010completionySS_S2SySb_AA21LatestVersionResponseCSgs5Error_pSgtctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadUpdatePackage", + "printedName": "downloadUpdatePackage(downloadURL:model:versionNumber:versionCode:fileMD5:showProgress:completion:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC21downloadUpdatePackage0F3URL5model13versionNumber0K4Code7fileMD512showProgress10completionySS_S4SSgSbySb_ALtctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC21downloadUpdatePackage0F3URL5model13versionNumber0K4Code7fileMD512showProgress10completionySS_S4SSgSbySb_ALtctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkForceUpdate", + "printedName": "checkForceUpdate(model:snType:versionType:completion:)", + "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, PlaudDeviceBasicSDK.LatestVersionResponse?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16checkForceUpdate5model6snType07versionK010completionySS_S2SySb_AA21LatestVersionResponseCSgtctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16checkForceUpdate5model6snType07versionK010completionySS_S2SySb_AA21LatestVersionResponseCSgtctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDownloadedUpdatePackages", + "printedName": "getDownloadedUpdatePackages()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC27getDownloadedUpdatePackagesSaySSGyF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC27getDownloadedUpdatePackagesSaySSGyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanDownloadedUpdatePackages", + "printedName": "cleanDownloadedUpdatePackages()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC29cleanDownloadedUpdatePackagesSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC29cleanDownloadedUpdatePackagesSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compareVersions", + "printedName": "compareVersions(_:_:)", + "children": [ + { + "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" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC15compareVersionsySiSS_SStF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15compareVersionsySiSS_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUpdate", + "printedName": "shouldUpdate(currentVersion:latestVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC12shouldUpdate14currentVersion06latestI0SbSS_SStF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12shouldUpdate14currentVersion06latestI0SbSS_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formatFileSize", + "printedName": "formatFileSize(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC14formatFileSizeySSs5Int64VF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14formatFileSizeySSs5Int64VF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkSdkResource", + "printedName": "checkSdkResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16checkSdkResourceyyF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16checkSdkResourceyyF", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkLatestVersion", + "printedName": "checkLatestVersion(model:snType:versionType:callback:)", + "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": "(PlaudDeviceBasicSDK.UpdateStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC18checkLatestVersion5model6snType07versionK08callbackySS_S2SyAA12UpdateStatusOctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18checkLatestVersion5model6snType07versionK08callbackySS_S2SyAA12UpdateStatusOctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showUpdateConfirmation", + "printedName": "showUpdateConfirmation(versionInfo:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)showUpdateConfirmationWithVersionInfo:completion:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC22showUpdateConfirmation11versionInfo10completionyAA21LatestVersionResponseC_ySbctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "showUpdateConfirmationWithVersionInfo:completion:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadUpdate", + "printedName": "downloadUpdate(versionInfo:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC14downloadUpdate11versionInfo8callbackyAA21LatestVersionResponseC_yAA0G6StatusOctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14downloadUpdate11versionInfo8callbackyAA21LatestVersionResponseC_yAA0G6StatusOctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "performUpdateCheck", + "printedName": "performUpdateCheck(model:snType:versionType:callback:)", + "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": "(PlaudDeviceBasicSDK.UpdateStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC18performUpdateCheck5model6snType07versionK08callbackySS_S2SyAA0G6StatusOctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18performUpdateCheck5model6snType07versionK08callbackySS_S2SyAA0G6StatusOctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkLatestVersionForModel", + "printedName": "checkLatestVersionForModel(_:snType:versionType:hasUpdate:failure:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)checkLatestVersionForModel:snType:versionType:hasUpdate:failure:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC26checkLatestVersionForModel_6snType07versionL09hasUpdate7failureySS_S2SySb_AA0gH8ResponseCSgtcySSctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadUpdateForVersion", + "printedName": "downloadUpdateForVersion(_:progress:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)downloadUpdateForVersion:progress:success:failure:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC24downloadUpdateForVersion_8progress7success7failureyAA06LatestI8ResponseC_ySfcySScySSctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "BleAgentProtocol", + "printedName": "BleAgentProtocol", + "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol", + "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "EncryptionError", + "printedName": "EncryptionError", + "children": [ + { + "kind": "Var", + "name": "noKey", + "printedName": "noKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorNoKey", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO5noKeyyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "noNonce", + "printedName": "noNonce", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorNoNonce", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO7noNonceyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "noAD", + "printedName": "noAD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorNoAD", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO4noADyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "dataTooShort", + "printedName": "dataTooShort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorDataTooShort", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO12dataTooShortyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "decryptionFailed", + "printedName": "decryptionFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorDecryptionFailed", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO16decryptionFailedyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.EncryptionError?", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_nsErrorDomain", + "printedName": "_nsErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO03_nsF6DomainSSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO03_nsF6DomainSSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO03_nsF6DomainSSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO03_nsF6DomainSSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "_BridgedNSError", + "printedName": "_BridgedNSError", + "usr": "s:10Foundation15_BridgedNSErrorP", + "mangledName": "$s10Foundation15_BridgedNSErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeableError", + "printedName": "_ObjectiveCBridgeableError", + "usr": "s:10Foundation26_ObjectiveCBridgeableErrorP", + "mangledName": "$s10Foundation26_ObjectiveCBridgeableErrorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "ObjectiveC", + "printedName": "ObjectiveC", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudFirmwarePhase", + "children": [ + { + "kind": "Var", + "name": "downloading", + "printedName": "downloading", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type) -> PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase@PlaudFirmwarePhaseDownloading", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO11downloadingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "installing", + "printedName": "installing", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type) -> PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase@PlaudFirmwarePhaseInstalling", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO10installingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "restarting", + "printedName": "restarting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type) -> PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase@PlaudFirmwarePhaseRestarting", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO10restartingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "complete", + "printedName": "complete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type) -> PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase@PlaudFirmwarePhaseComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO8completeyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "PlaudFirmwareUpdateResult", + "printedName": "PlaudFirmwareUpdateResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(py)success", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC7successSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(im)success", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC7successSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(py)version", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC7versionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(im)version", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC7versionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(py)errorMessage", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC12errorMessageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(im)errorMessage", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC12errorMessageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwareUpdateResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudFirmwareCheckResult", + "printedName": "PlaudFirmwareCheckResult", + "children": [ + { + "kind": "Var", + "name": "hasUpdate", + "printedName": "hasUpdate", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)hasUpdate", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC9hasUpdateSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)hasUpdate", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC9hasUpdateSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentVersion", + "printedName": "currentVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)currentVersion", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC14currentVersionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)currentVersion", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC14currentVersionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "latestVersion", + "printedName": "latestVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)latestVersion", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC13latestVersionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)latestVersion", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC13latestVersionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionCode", + "printedName": "versionCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)versionCode", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC11versionCodeSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)versionCode", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC11versionCodeSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "releaseNotes", + "printedName": "releaseNotes", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)releaseNotes", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC12releaseNotesSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)releaseNotes", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC12releaseNotesSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "downloadUrl", + "printedName": "downloadUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)downloadUrl", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC11downloadUrlSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)downloadUrl", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC11downloadUrlSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "md5", + "printedName": "md5", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)md5", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC3md5SSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)md5", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC3md5SSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isForce", + "printedName": "isForce", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)isForce", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC7isForceSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)isForce", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC7isForceSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwareCheckResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareCheckResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Function", + "name": "PlaudQuickUpdateCheck", + "printedName": "PlaudQuickUpdateCheck(model:snType:versionType:showUI:completion:)", + "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": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool, Swift.String?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A16QuickUpdateCheck5model6snType07versionJ06showUI10completionySS_S2SSbySb_SSSgtcSgtF", + "mangledName": "$s19PlaudDeviceBasicSDK0A16QuickUpdateCheck5model6snType07versionJ06showUI10completionySS_S2SSbySb_SSSgtcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "PlaudSilentUpdateCheck", + "printedName": "PlaudSilentUpdateCheck(model:snType:versionType:completion:)", + "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, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "usr": "s:Sq" + }, + { + "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": "s:19PlaudDeviceBasicSDK0A17SilentUpdateCheck5model6snType07versionJ010completionySS_S2SySb_AA21LatestVersionResponseCSgs5Error_pSgtctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17SilentUpdateCheck5model6snType07versionJ010completionySS_S2SySb_AA21LatestVersionResponseCSgs5Error_pSgtctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "LatestVersionResponse", + "printedName": "LatestVersionResponse", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)type", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC4typeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)type", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC4typeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)model", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC5modelSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)model", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC5modelSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version_type", + "printedName": "version_type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version_type", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12version_typeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version_type", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12version_typeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version_code", + "printedName": "version_code", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version_code", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12version_codeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version_code", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12version_codeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version_number", + "printedName": "version_number", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version_number", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC14version_numberSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version_number", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC14version_numberSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version_description", + "printedName": "version_description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version_description", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC19version_descriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version_description", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC19version_descriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "is_force", + "printedName": "is_force", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)is_force", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC8is_forceSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)is_force", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC8is_forceSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "is_strong_guidance", + "printedName": "is_strong_guidance", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)is_strong_guidance", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC18is_strong_guidanceSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)is_strong_guidance", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC18is_strong_guidanceSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "file_md5", + "printedName": "file_md5", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)file_md5", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC8file_md5SSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)file_md5", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC8file_md5SSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "download_url", + "printedName": "download_url", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)download_url", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12download_urlSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)download_url", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12download_urlSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:model:version_type:version_code:version_number:version_description:is_force:is_strong_guidance:file_md5:download_url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21LatestVersionResponseC4type5model08version_H00J5_code0J7_number0J12_description8is_force0N16_strong_guidance8file_md512download_urlACSS_S5SS2bSSSgSStcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC4type5model08version_H00J5_code0J7_number0J12_description8is_force0N16_strong_guidance8file_md512download_urlACSS_S5SS2bSSSgSStcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC7versionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC7versionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "release_notes", + "printedName": "release_notes", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)release_notes", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC13release_notesSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)release_notes", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC13release_notesSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "force_update", + "printedName": "force_update", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)force_update", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12force_updateSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)force_update", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12force_updateSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21LatestVersionResponseC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK21LatestVersionResponseC6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "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": "UpdateStatus", + "printedName": "UpdateStatus", + "children": [ + { + "kind": "Var", + "name": "checking", + "printedName": "checking", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO8checkingyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO8checkingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "available", + "printedName": "available", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> (PlaudDeviceBasicSDK.LatestVersionResponse) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.LatestVersionResponse) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO9availableyAcA21LatestVersionResponseCcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO9availableyAcA21LatestVersionResponseCcACmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "notAvailable", + "printedName": "notAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO12notAvailableyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO12notAvailableyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "downloading", + "printedName": "downloading", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> (Swift.Float) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Float) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(progress: Swift.Float)", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO11downloadingyACSf_tcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO11downloadingyACSf_tcACmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "downloaded", + "printedName": "downloaded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(localPath: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO10downloadedyACSS_tcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO10downloadedyACSS_tcACmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO6failedyACs5Error_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO6failedyACs5Error_pcACmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "UpdateError", + "printedName": "UpdateError", + "children": [ + { + "kind": "Var", + "name": "networkError", + "printedName": "networkError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO07networkF0yACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO07networkF0yACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidResponse", + "printedName": "invalidResponse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO15invalidResponseyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO15invalidResponseyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "downloadFailed", + "printedName": "downloadFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO14downloadFailedyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO14downloadFailedyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "fileSystemError", + "printedName": "fileSystemError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO010fileSystemF0yACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO010fileSystemF0yACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "noUpdateAvailable", + "printedName": "noUpdateAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO02noE9AvailableyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO02noE9AvailableyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "userCancelled", + "printedName": "userCancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO13userCancelledyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO13userCancelledyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "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:19PlaudDeviceBasicSDK11UpdateErrorO16errorDescriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO16errorDescriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK11UpdateErrorO16errorDescriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO16errorDescriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudEncryptHeader", + "printedName": "PlaudEncryptHeader", + "children": [ + { + "kind": "Var", + "name": "headerSize", + "printedName": "headerSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cpy)headerSize", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC10headerSizeSivpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cm)headerSize", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC10headerSizeSivgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "magicString", + "printedName": "magicString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cpy)magicString", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11magicStringSSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cm)magicString", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11magicStringSSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "magic", + "printedName": "magic", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)magic", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC5magic10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)magic", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC5magic10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)version", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7versions6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)version", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7versions6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headerSizeValue", + "printedName": "headerSizeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)headerSizeValue", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC15headerSizeValues6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)headerSizeValue", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC15headerSizeValues6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crc", + "printedName": "crc", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)crc", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC3crcs6UInt32Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)crc", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC3crcs6UInt32Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userId", + "printedName": "userId", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)userId", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC6userId10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)userId", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC6userId10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileType", + "printedName": "fileType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)fileType", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8fileTypes6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)fileType", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8fileTypes6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "channel", + "printedName": "channel", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)channel", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7channels6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)channel", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7channels6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "encryptType", + "printedName": "encryptType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)encryptType", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11encryptTypes6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)encryptType", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11encryptTypes6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)duration", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8durations6UInt32Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)duration", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8durations6UInt32Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)reserved", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8reserved10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)reserved", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8reserved10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "counter", + "printedName": "counter", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)counter", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7counters6UInt32Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)counter", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7counters6UInt32Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)nonce", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC5nonce10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)nonce", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC5nonce10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "segment", + "printedName": "segment", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)segment", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7segments6UInt32Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)segment", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7segments6UInt32Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "algParams", + "printedName": "algParams", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)algParams", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC9algParams10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)algParams", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC9algParams10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keyCipher", + "printedName": "keyCipher", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)keyCipher", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC9keyCipher10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)keyCipher", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC9keyCipher10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)initWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC4dataACSg10Foundation4DataV_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "initWithData:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "fromFile", + "printedName": "fromFile(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cm)fromFileWithPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8fromFile4pathACSgSS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "fromFileWithPath:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isEncrypted", + "printedName": "isEncrypted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)isEncrypted", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11isEncryptedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)isEncrypted", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11isEncryptedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userIdString", + "printedName": "userIdString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)userIdString", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC12userIdStringSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)userIdString", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC12userIdStringSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)description", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11descriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)description", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11descriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudLogConfig", + "printedName": "PlaudLogConfig", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogConfig", + "printedName": "PlaudDeviceBasicSDK.PlaudLogConfig", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogConfig", + "printedName": "PlaudDeviceBasicSDK.PlaudLogConfig", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxFileCount", + "printedName": "maxFileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileCount", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC12maxFileCountSivp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileCount", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC12maxFileCountSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxFileAge", + "printedName": "maxFileAge", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileAge", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC10maxFileAgeSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileAge", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC10maxFileAgeSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxFileSize", + "printedName": "maxFileSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileSize", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC11maxFileSizes5Int64Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileSize", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC11maxFileSizes5Int64Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadInterval", + "printedName": "uploadInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)uploadInterval", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC14uploadIntervalSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)uploadInterval", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC14uploadIntervalSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadTimeout", + "printedName": "uploadTimeout", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)uploadTimeout", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC13uploadTimeoutSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)uploadTimeout", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC13uploadTimeoutSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "updateFileConfiguration", + "printedName": "updateFileConfiguration(maxFileCount:maxFileAge:maxFileSize:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "hasDefaultArg": true, + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)updateFileConfigurationWithMaxFileCount:maxFileAge:maxFileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC23updateFileConfiguration03maxH5Count0jH3Age0jH4SizeySi_Sds5Int64VtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "updateFileConfigurationWithMaxFileCount:maxFileAge:maxFileSize:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateUploadConfiguration", + "printedName": "updateUploadConfiguration(uploadInterval:uploadTimeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)updateUploadConfigurationWithUploadInterval:uploadTimeout:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC25updateUploadConfiguration14uploadInterval0J7TimeoutySd_SdtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "updateUploadConfigurationWithUploadInterval:uploadTimeout:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetToDefaults", + "printedName": "resetToDefaults()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)resetToDefaults", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC15resetToDefaultsyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentConfiguration", + "printedName": "getCurrentConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)getCurrentConfiguration", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC23getCurrentConfigurationSDySSypGyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "maxFileAgeDays", + "printedName": "maxFileAgeDays", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileAgeDays", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC14maxFileAgeDaysSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileAgeDays", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC14maxFileAgeDaysSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxFileSizeMB", + "printedName": "maxFileSizeMB", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileSizeMB", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC13maxFileSizeMBSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileSizeMB", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC13maxFileSizeMBSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadIntervalMinutes", + "printedName": "uploadIntervalMinutes", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)uploadIntervalMinutes", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC21uploadIntervalMinutesSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)uploadIntervalMinutes", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC21uploadIntervalMinutesSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadTimeoutSeconds", + "printedName": "uploadTimeoutSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)uploadTimeoutSeconds", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC20uploadTimeoutSecondsSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)uploadTimeoutSeconds", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC20uploadTimeoutSecondsSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "validateConfiguration", + "printedName": "validateConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)validateConfiguration", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC21validateConfigurationSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConfigurationDescription", + "printedName": "getConfigurationDescription()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)getConfigurationDescription", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC27getConfigurationDescriptionSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudLogFileRotationManager", + "printedName": "PlaudLogFileRotationManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogFileRotationManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLogFileRotationManager", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogFileRotationManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLogFileRotationManager", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "forceRotateCurrentLogFile", + "printedName": "forceRotateCurrentLogFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(im)forceRotateCurrentLogFile", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC018forceRotateCurrenteF0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkAndRotateIfNeeded", + "printedName": "checkAndRotateIfNeeded(filePath:additionalSize:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(im)checkAndRotateIfNeededWithFilePath:additionalSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC22checkAndRotateIfNeeded8filePath14additionalSizeSbSS_s5Int64VtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "checkAndRotateIfNeededWithFilePath:additionalSize:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentLogFilePath", + "printedName": "getCurrentLogFilePath()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(im)getCurrentLogFilePath", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC010getCurrenteF4PathSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notifyUploadCompleted", + "printedName": "notifyUploadCompleted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(im)notifyUploadCompleted", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC21notifyUploadCompletedyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudWiFiAgentProtocol", + "printedName": "PlaudWiFiAgentProtocol", + "children": [ + { + "kind": "Function", + "name": "wifiCommonErr", + "printedName": "wifiCommonErr(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiCommonErr::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP13wifiCommonErryySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiHandshake", + "printedName": "wifiHandshake(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiHandshake:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP13wifiHandshakeyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiConnectionStatus", + "printedName": "wifiConnectionStatus(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiConnectionStatus::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP20wifiConnectionStatusyySS_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiPower", + "printedName": "wifiPower(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiPower::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP9wifiPoweryySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileListFail", + "printedName": "wifiFileListFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiFileListFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP16wifiFileListFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileList", + "printedName": "wifiFileList(_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiFileList:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP12wifiFileListyySay0a3BleD00lJ0CGF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFile", + "printedName": "wifiSyncFile(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiSyncFile::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP12wifiSyncFileyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileData", + "printedName": "wifiSyncFileData(_:_:_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiSyncFileData::::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP16wifiSyncFileDatayySi_S2i10Foundation0L0VtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDataComplete", + "printedName": "wifiDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiDataComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP16wifiDataCompleteyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileStop", + "printedName": "wifiSyncFileStop(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiSyncFileStop:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP16wifiSyncFileStopyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileDelete", + "printedName": "wifiFileDelete(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiFileDelete::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP14wifiFileDeleteyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClientFail", + "printedName": "wifiClientFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiClientFail", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP14wifiClientFailyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClose", + "printedName": "wifiClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiClose:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP9wifiCloseyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRateFail", + "printedName": "wifiRateFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiRateFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP12wifiRateFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRate", + "printedName": "wifiRate(_:_:_:)", + "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": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiRate:::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP8wifiRateyySi_SiSdtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogsFail", + "printedName": "wifiLogsFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiLogsFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP12wifiLogsFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogs", + "printedName": "wifiLogs(_:)", + "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": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiLogs:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP8wifiLogsyy10Foundation4DataVSgF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiTips", + "printedName": "wifiTips(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiTips:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP8wifiTipsyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDownloadAllProgress", + "printedName": "wifiDownloadAllProgress(_:_:_:_:)", + "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": "PlaudBleSDK.BleFile?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleFile", + "printedName": "PlaudBleSDK.BleFile", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiDownloadAllProgress::::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP23wifiDownloadAllProgressyySi_Si0a3BleD00M4FileCSgSdtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDownloadAllCompleted", + "printedName": "wifiDownloadAllCompleted(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiDownloadAllCompleted::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP24wifiDownloadAllCompletedyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudWiFiAgent", + "printedName": "PlaudWiFiAgent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWiFiAgent", + "printedName": "PlaudDeviceBasicSDK.PlaudWiFiAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWiFiAgent", + "printedName": "PlaudDeviceBasicSDK.PlaudWiFiAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol)?" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)delegate", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWiFiAgentProtocol", + "printedName": "any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)delegate", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWiFiAgentProtocol", + "printedName": "any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)setDelegate:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)bleDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)bleDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)setBleDevice:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDownloading", + "printedName": "isDownloading", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)isDownloading", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13isDownloadingSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isDownloading", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13isDownloadingSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentSessionId", + "printedName": "currentSessionId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)currentSessionId", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16currentSessionIdSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)currentSessionId", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16currentSessionIdSivg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)isConnected", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC11isConnectedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isConnected", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC11isConnectedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentDownloadSpeedKBps", + "printedName": "currentDownloadSpeedKBps", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)currentDownloadSpeedKBps", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC24currentDownloadSpeedKBpsSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)currentDownloadSpeedKBps", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC24currentDownloadSpeedKBpsSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getFormattedDownloadSpeed", + "printedName": "getFormattedDownloadSpeed()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getFormattedDownloadSpeed", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC25getFormattedDownloadSpeedSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isDownloadingAll", + "printedName": "isDownloadingAll", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)isDownloadingAll", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16isDownloadingAllSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isDownloadingAll", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16isDownloadingAllSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "openLog", + "printedName": "openLog(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)openLog::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC7openLogyySb_ySScSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listenPort", + "printedName": "listenPort(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)listenPort::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC10listenPortyySS_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectWifi", + "printedName": "connectWifi(_:_:_:)", + "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": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)connectWifi:::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC11connectWifiyySS_SSSitF", + "moduleName": "PlaudDeviceBasicSDK", + "intro_iOS": "11.0", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)disconnect", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC10disconnectyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConnectedTo", + "printedName": "isConnectedTo(_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isConnectedTo:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13isConnectedToySbSSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConnectionStatusDescription", + "printedName": "getConnectionStatusDescription()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getConnectionStatusDescription", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC30getConnectionStatusDescriptionSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentWiFiName", + "printedName": "getCurrentWiFiName()", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getCurrentWiFiName", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC010getCurrenteF4NameSSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFileList", + "printedName": "getFileList(_:_:_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getFileList:::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC11getFileListyySi_SiSbtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "syncFile", + "printedName": "syncFile(_:_:_:_:)", + "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", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)syncFile::::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8syncFileyySi_S3itF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSyncFile", + "printedName": "stopSyncFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)stopSyncFile::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12stopSyncFileyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteFile", + "printedName": "deleteFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)deleteFile::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC10deleteFileyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exportAudioViaWiFi", + "printedName": "exportAudioViaWiFi(sessionId:outputDir:format:channels:callback:)", + "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": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "AudioExportCallback", + "printedName": "any PlaudDeviceBasicSDK.AudioExportCallback", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A9WiFiAgentC014exportAudioViaeF09sessionId9outputDir6format8channels8callbackySi_SSAA0I12ExportFormatOSiAA0iR8Callback_ptF", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC014exportAudioViaeF09sessionId9outputDir6format8channels8callbackySi_SSAA0I12ExportFormatOSiAA0iR8Callback_ptF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startDownloadAll", + "printedName": "startDownloadAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)startDownloadAll", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16startDownloadAllyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopDownloadAll", + "printedName": "stopDownloadAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)stopDownloadAll", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC15stopDownloadAllyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startRateTest", + "printedName": "startRateTest(_:_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)startRateTest::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13startRateTestyySb_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceLogs", + "printedName": "getDeviceLogs(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getDeviceLogs:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03getB4LogsyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isWebSocketConnected", + "printedName": "isWebSocketConnected()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isWebSocketConnected", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC20isWebSocketConnectedSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiCommonErr", + "printedName": "wifiCommonErr(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiCommonErr::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13wifiCommonErryySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiCommonErr::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiHandshake", + "printedName": "wifiHandshake(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiHandshake:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13wifiHandshakeyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiHandshake:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiConnectionStatus", + "printedName": "wifiConnectionStatus(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A9WiFiAgentC20wifiConnectionStatusyySS_SbtF", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC20wifiConnectionStatusyySS_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiPower", + "printedName": "wifiPower(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiPower::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC9wifiPoweryySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiPower::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileListFail", + "printedName": "wifiFileListFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiFileListFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16wifiFileListFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiFileListFail:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileList", + "printedName": "wifiFileList(_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiFileList:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12wifiFileListyySay0a3BleD00kI0CGF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiFileList:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFile", + "printedName": "wifiSyncFile(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiSyncFile::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12wifiSyncFileyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiSyncFile::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileData", + "printedName": "wifiSyncFileData(_:_:_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiSyncFileData::::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16wifiSyncFileDatayySi_S2i10Foundation0K0VtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiSyncFileData::::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDataComplete", + "printedName": "wifiDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiDataComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16wifiDataCompleteyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiDataComplete", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileStop", + "printedName": "wifiSyncFileStop(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiSyncFileStop:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16wifiSyncFileStopyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiSyncFileStop:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileDelete", + "printedName": "wifiFileDelete(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiFileDelete::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC14wifiFileDeleteyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiFileDelete::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClientFail", + "printedName": "wifiClientFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiClientFail", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC14wifiClientFailyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiClientFail", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClose", + "printedName": "wifiClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiClose:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC9wifiCloseyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRateFail", + "printedName": "wifiRateFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiRateFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12wifiRateFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiRateFail:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRate", + "printedName": "wifiRate(_:_:_:)", + "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": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiRate:::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8wifiRateyySi_SiSdtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiRate:::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogsFail", + "printedName": "wifiLogsFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiLogsFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12wifiLogsFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiLogsFail:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogs", + "printedName": "wifiLogs(_:)", + "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": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiLogs:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8wifiLogsyy10Foundation4DataVSgF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiLogs:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiTips", + "printedName": "wifiTips(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiTips:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8wifiTipsyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiTips:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "penRequestOTAData", + "printedName": "penRequestOTAData(start:end:payloadSize:uid:sendRatePPS:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)penRequestOTADataWithStart:end:payloadSize:uid:sendRatePPS:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC17penRequestOTAData5start3end11payloadSize3uid11sendRatePPSySi_S4itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "penRequestOTADataWithStart:end:payloadSize:uid:sendRatePPS:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiOTAStatus", + "printedName": "wifiOTAStatus(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiOTAStatus::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13wifiOTAStatusyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiOTAStatus::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "WiFiAgentProtocol", + "printedName": "WiFiAgentProtocol", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "RSASecretConfig", + "printedName": "RSASecretConfig", + "children": [ + { + "kind": "Var", + "name": "defaultPublicKey", + "printedName": "defaultPublicKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC16defaultPublicKeySSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC16defaultPublicKeySSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC16defaultPublicKeySSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC16defaultPublicKeySSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultPrivateKey", + "printedName": "defaultPrivateKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC17defaultPrivateKeySSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC17defaultPrivateKeySSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC17defaultPrivateKeySSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC17defaultPrivateKeySSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setKeys", + "printedName": "setKeys(publicKey:privateKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC7setKeys9publicKey07privateJ0ySS_SStFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC7setKeys9publicKey07privateJ0ySS_SStFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSnSignature", + "printedName": "getSnSignature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC14getSnSignature3forSSSgSS_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC14getSnSignature3forSSSgSS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSnSignature", + "printedName": "setSnSignature(_:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC14setSnSignature_3forySS_SStFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC14setSnSignature_3forySS_SStFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSnSignature", + "printedName": "clearSnSignature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC16clearSnSignature3forySS_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC16clearSnSignature3forySS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAllSnSignatures", + "printedName": "clearAllSnSignatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC20clearAllSnSignaturesyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC20clearAllSnSignaturesyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearKeys", + "printedName": "clearKeys()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC9clearKeysyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC9clearKeysyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentPublicKey", + "printedName": "getCurrentPublicKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC19getCurrentPublicKeySSyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC19getCurrentPublicKeySSyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentPrivateKey", + "printedName": "getCurrentPrivateKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC20getCurrentPrivateKeySSyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC20getCurrentPrivateKeySSyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKey", + "printedName": "getPublicKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "PlaudBleSDK.PublicKey", + "usr": "s:11PlaudBleSDK9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC12getPublicKey0a3BleD00hI0CyKFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC12getPublicKey0a3BleD00hI0CyKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPrivateKey", + "printedName": "getPrivateKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "PlaudBleSDK.PrivateKey", + "usr": "s:11PlaudBleSDK10PrivateKeyC" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC13getPrivateKey0a3BleD00hI0CyKFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC13getPrivateKey0a3BleD00hI0CyKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasCustomKeys", + "printedName": "hasCustomKeys()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC13hasCustomKeysSbyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC13hasCustomKeysSbyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Exported", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudLogEncryption", + "printedName": "PlaudLogEncryption", + "children": [ + { + "kind": "Function", + "name": "exportEncryptedLogs", + "printedName": "exportEncryptedLogs()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSURL?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSURL", + "printedName": "Foundation.NSURL", + "usr": "c:objc(cs)NSURL" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogEncryption(cm)exportEncryptedLogs", + "mangledName": "$s19PlaudDeviceBasicSDK0A13LogEncryptionC19exportEncryptedLogsSo5NSURLCSgyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogEncryption", + "printedName": "PlaudDeviceBasicSDK.PlaudLogEncryption", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogEncryption" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogEncryption(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A13LogEncryptionCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogEncryption", + "mangledName": "$s19PlaudDeviceBasicSDK0A13LogEncryptionC", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "PlaudLogEncryption", + "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": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "appendDistinct", + "printedName": "appendDistinct(contentsOf:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0, τ_0_0) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(τ_0_0, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:Sa19PlaudDeviceBasicSDKE14appendDistinct10contentsOf5whereyqd___Sbx_xtct7ElementQyd__RszSTRd__lF", + "mangledName": "$sSa19PlaudDeviceBasicSDKE14appendDistinct10contentsOf5whereyqd___Sbx_xtct7ElementQyd__RszSTRd__lF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Sequence>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "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": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIColor", + "printedName": "UIColor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:So7UIColorC19PlaudDeviceBasicSDKE3hexABs6UInt32V_tcfc", + "mangledName": "$sSo7UIColorC19PlaudDeviceBasicSDKE3hexABs6UInt32V_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIColor", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIColor", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "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": "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": "_ExpressibleByColorLiteral", + "printedName": "_ExpressibleByColorLiteral", + "usr": "s:s26_ExpressibleByColorLiteralP", + "mangledName": "$ss26_ExpressibleByColorLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Date", + "printedName": "Date", + "children": [ + { + "kind": "Var", + "name": "minSec", + "printedName": "minSec", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV19PlaudDeviceBasicSDKE6minSecSivp", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE6minSecSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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:10Foundation4DateV19PlaudDeviceBasicSDKE6minSecSivg", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE6minSecSivg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxSec", + "printedName": "maxSec", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV19PlaudDeviceBasicSDKE6maxSecSivp", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE6maxSecSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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:10Foundation4DateV19PlaudDeviceBasicSDKE6maxSecSivg", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE6maxSecSivg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "formatyyyyMMdd", + "printedName": "formatyyyyMMdd", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV19PlaudDeviceBasicSDKE14formatyyyyMMddSSvp", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE14formatyyyyMMddSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:10Foundation4DateV19PlaudDeviceBasicSDKE14formatyyyyMMddSSvg", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE14formatyyyyMMddSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yyyyMMddValue", + "printedName": "yyyyMMddValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV19PlaudDeviceBasicSDKE13yyyyMMddValueSivp", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE13yyyyMMddValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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:10Foundation4DateV19PlaudDeviceBasicSDKE13yyyyMMddValueSivg", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE13yyyyMMddValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "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": "UIDevice", + "printedName": "UIDevice", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ], + "declKind": "Var", + "usr": "s:So8UIDeviceC19PlaudDeviceBasicSDKE4typeAC5ModelOvp", + "mangledName": "$sSo8UIDeviceC19PlaudDeviceBasicSDKE4typeAC5ModelOvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ], + "declKind": "Accessor", + "usr": "s:So8UIDeviceC19PlaudDeviceBasicSDKE4typeAC5ModelOvg", + "mangledName": "$sSo8UIDeviceC19PlaudDeviceBasicSDKE4typeAC5ModelOvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getOSInfo", + "printedName": "getOSInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So8UIDeviceC19PlaudDeviceBasicSDKE9getOSInfoSSyFZ", + "mangledName": "$sSo8UIDeviceC19PlaudDeviceBasicSDKE9getOSInfoSSyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Preconcurrency", + "Custom", + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIDevice", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIDevice", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "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" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UINavigationController", + "printedName": "UINavigationController", + "children": [ + { + "kind": "Function", + "name": "pushViewController", + "printedName": "pushViewController(_:animated:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:So22UINavigationControllerC19PlaudDeviceBasicSDKE08pushViewB0_8animated10completionySo06UIViewB0C_SbyycSgtF", + "mangledName": "$sSo22UINavigationControllerC19PlaudDeviceBasicSDKE08pushViewB0_8animated10completionySo06UIViewB0C_SbyycSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UINavigationController", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UINavigationController", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIViewController", + "printedName": "UIViewController", + "children": [ + { + "kind": "Var", + "name": "isCurrentVisible", + "printedName": "isCurrentVisible", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE16isCurrentVisibleSbvp", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE16isCurrentVisibleSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE16isCurrentVisibleSbvg", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE16isCurrentVisibleSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "currentIS", + "printedName": "currentIS(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "any AnyObject.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ] + } + ], + "declKind": "Func", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE9currentISySbyXlXpF", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE9currentISySbyXlXpF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "currentVCClass", + "printedName": "currentVCClass", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE14currentVCClassABSgvp", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE14currentVCClassABSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE14currentVCClassABSgvg", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE14currentVCClassABSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "presentBottom", + "printedName": "presentBottom(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PresentBottomVC", + "printedName": "PlaudDeviceBasicSDK.PresentBottomVC", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC" + } + ], + "declKind": "Func", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE13presentBottomyyAC07PresentH2VCCF", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE13presentBottomyyAC07PresentH2VCCF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentationController", + "printedName": "presentationController(forPresented:presenting:source:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIPresentationController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIPresentationController", + "printedName": "UIKit.UIPresentationController", + "usr": "c:objc(cs)UIPresentationController" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@@objc(cs)UIViewController(im)presentationControllerForPresentedViewController:presentingViewController:sourceViewController:", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE012presentationB012forPresented10presenting6sourceSo014UIPresentationB0CSgAB_ABSgABtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "presentationControllerForPresentedViewController:presentingViewController:sourceViewController:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIViewController", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIViewController", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIResponder", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIResponder", + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Var", + "name": "local", + "printedName": "local", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS19PlaudDeviceBasicSDKE5localSSvp", + "mangledName": "$sSS19PlaudDeviceBasicSDKE5localSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:SS19PlaudDeviceBasicSDKE5localSSvg", + "mangledName": "$sSS19PlaudDeviceBasicSDKE5localSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "image", + "printedName": "image", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:SS19PlaudDeviceBasicSDKE5imageSo7UIImageCSgvp", + "mangledName": "$sSS19PlaudDeviceBasicSDKE5imageSo7UIImageCSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:SS19PlaudDeviceBasicSDKE5imageSo7UIImageCSgvg", + "mangledName": "$sSS19PlaudDeviceBasicSDKE5imageSo7UIImageCSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "simpleEncrypt", + "printedName": "simpleEncrypt()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS19PlaudDeviceBasicSDKE13simpleEncryptSSyF", + "mangledName": "$sSS19PlaudDeviceBasicSDKE13simpleEncryptSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "plaudLocalized", + "printedName": "plaudLocalized", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS19PlaudDeviceBasicSDKE14plaudLocalizedSSvp", + "mangledName": "$sSS19PlaudDeviceBasicSDKE14plaudLocalizedSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:SS19PlaudDeviceBasicSDKE14plaudLocalizedSSvg", + "mangledName": "$sSS19PlaudDeviceBasicSDKE14plaudLocalizedSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Character", + "printedName": "Character", + "children": [ + { + "kind": "Function", + "name": "intValue", + "printedName": "intValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:SJ19PlaudDeviceBasicSDKE8intValueSiyF", + "mangledName": "$sSJ19PlaudDeviceBasicSDKE8intValueSiyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SJ", + "mangledName": "$sSJ", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIView", + "printedName": "UIView", + "declKind": "Class", + "usr": "c:objc(cs)UIView", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIView", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIResponder", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIResponder", + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIBarButtonItem", + "printedName": "UIBarButtonItem", + "declKind": "Class", + "usr": "c:objc(cs)UIBarButtonItem", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIBarButtonItem", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIBarItem", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIBarItem", + "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": "CABasicAnimation", + "printedName": "CABasicAnimation", + "declKind": "Class", + "usr": "c:objc(cs)CABasicAnimation", + "moduleName": "QuartzCore", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "CABasicAnimation", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CAPropertyAnimation", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "QuartzCore.CAPropertyAnimation", + "QuartzCore.CAAnimation", + "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": "Int", + "printedName": "Int", + "children": [ + { + "kind": "Function", + "name": "loopRun", + "printedName": "loopRun(task:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:Si19PlaudDeviceBasicSDKE7loopRun4taskyyyXE_tF", + "mangledName": "$sSi19PlaudDeviceBasicSDKE7loopRun4taskyyyXE_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Si", + "mangledName": "$sSi", + "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.Int.Words", + "usr": "s:Si5WordsV" + } + ] + } + ], + "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": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "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": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "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": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "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": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "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": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Int.SIMD2Storage", + "usr": "s:Si12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Int.SIMD4Storage", + "usr": "s:Si12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Int.SIMD8Storage", + "usr": "s:Si12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Int.SIMD16Storage", + "usr": "s:Si13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Int.SIMD32Storage", + "usr": "s:Si13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Int.SIMD64Storage", + "usr": "s:Si13SIMD64StorageV" + } + ] + } + ], + "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": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DispatchTime", + "printedName": "DispatchTime", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchTime", + "printedName": "Dispatch.DispatchTime", + "usr": "s:8Dispatch0A4TimeV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8Dispatch0A4TimeV19PlaudDeviceBasicSDKE14integerLiteralACSi_tcfc", + "mangledName": "$s8Dispatch0A4TimeV19PlaudDeviceBasicSDKE14integerLiteralACSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchTime", + "printedName": "Dispatch.DispatchTime", + "usr": "s:8Dispatch0A4TimeV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:8Dispatch0A4TimeV19PlaudDeviceBasicSDKE12floatLiteralACSd_tcfc", + "mangledName": "$s8Dispatch0A4TimeV19PlaudDeviceBasicSDKE12floatLiteralACSd_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:8Dispatch0A4TimeV", + "mangledName": "$s8Dispatch0A4TimeV", + "moduleName": "Dispatch", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CGFloat", + "printedName": "CGFloat", + "children": [ + { + "kind": "Function", + "name": "random", + "printedName": "random(lower:upper:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "hasDefaultArg": true, + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "hasDefaultArg": true, + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "s:14CoreFoundation7CGFloatV19PlaudDeviceBasicSDKE6random5lower5upperA2C_ACtFZ", + "mangledName": "$s12CoreGraphics7CGFloatV19PlaudDeviceBasicSDKE6random5lower5upperA2C_ACtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14CoreFoundation7CGFloatV", + "mangledName": "$s12CoreGraphics7CGFloatV", + "moduleName": "CoreFoundation", + "intro_Macosx": "10.0", + "intro_iOS": "2.0", + "intro_tvOS": "9.0", + "intro_watchOS": "1.0", + "declAttributes": [ + "Frozen", + "OriginallyDefinedIn", + "OriginallyDefinedIn", + "OriginallyDefinedIn", + "OriginallyDefinedIn", + "OriginallyDefinedIn", + "Available", + "Available", + "Available", + "Available", + "Available" + ], + "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": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "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": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "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": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FileManager", + "printedName": "FileManager", + "children": [ + { + "kind": "Function", + "name": "findFiles", + "printedName": "findFiles(path:filterTypes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:So13NSFileManagerC19PlaudDeviceBasicSDKE9findFiles4path11filterTypesSaySSGSS_AGtF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE9findFiles4path11filterTypesSaySSGSS_AGtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "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:So13NSFileManagerC19PlaudDeviceBasicSDKE8fileSize4pathSiSS_tF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE8fileSize4pathSiSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "folderSize", + "printedName": "folderSize(dir:)", + "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:So13NSFileManagerC19PlaudDeviceBasicSDKE10folderSize3dirSiSS_tF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE10folderSize3dirSiSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearFolder", + "printedName": "clearFolder(dir:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So13NSFileManagerC19PlaudDeviceBasicSDKE11clearFolder3dirySS_tF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE11clearFolder3dirySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIfNotExist", + "printedName": "createIfNotExist(atPath:)", + "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:So13NSFileManagerC19PlaudDeviceBasicSDKE16createIfNotExist6atPathSbSS_tF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE16createIfNotExist6atPathSbSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyFile", + "printedName": "copyFile(filePath:withName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So13NSFileManagerC19PlaudDeviceBasicSDKE8copyFile8filePath8withNameSSSgSS_SStF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE8copyFile8filePath8withNameSSSgSS_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copy", + "printedName": "copy(from:to:callback:)", + "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": "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": "s:So13NSFileManagerC19PlaudDeviceBasicSDKE4copy4from2to8callbackySS_SSySbctF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE4copy4from2to8callbackySS_SSySbctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "plaudLogConfigurationChanged", + "printedName": "plaudLogConfigurationChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea19PlaudDeviceBasicSDKE28plaudLogConfigurationChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea19PlaudDeviceBasicSDKE28plaudLogConfigurationChangedABvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea19PlaudDeviceBasicSDKE28plaudLogConfigurationChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea19PlaudDeviceBasicSDKE28plaudLogConfigurationChangedABvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "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": "_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": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AVAudioPlayer", + "printedName": "AVAudioPlayer", + "children": [ + { + "kind": "Function", + "name": "play", + "printedName": "play(numberOfLoops:completion:)", + "children": [ + { + "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.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:So13AVAudioPlayerC19PlaudDeviceBasicSDKE4play13numberOfLoops10completionSbSi_ySbcSgtF", + "mangledName": "$sSo13AVAudioPlayerC19PlaudDeviceBasicSDKE4play13numberOfLoops10completionSbSi_ySbcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:So13AVAudioPlayerC19PlaudDeviceBasicSDKE6resumeyyF", + "mangledName": "$sSo13AVAudioPlayerC19PlaudDeviceBasicSDKE6resumeyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerDidFinishPlaying", + "printedName": "audioPlayerDidFinishPlaying(_:successfully:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@@objc(cs)AVAudioPlayer(im)audioPlayerDidFinishPlaying:successfully:", + "mangledName": "$sSo13AVAudioPlayerC19PlaudDeviceBasicSDKE05audioB16DidFinishPlaying_12successfullyyAB_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerDidFinishPlaying:successfully:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerDecodeErrorDidOccur", + "printedName": "audioPlayerDecodeErrorDidOccur(_:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "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@PlaudDeviceBasicSDK@@objc(cs)AVAudioPlayer(im)audioPlayerDecodeErrorDidOccur:error:", + "mangledName": "$sSo13AVAudioPlayerC19PlaudDeviceBasicSDKE05audioB19DecodeErrorDidOccur_5erroryAB_s0I0_pSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerDecodeErrorDidOccur:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)AVAudioPlayer", + "moduleName": "AVFAudio", + "isOpen": true, + "intro_iOS": "2.2", + "objc_name": "AVAudioPlayer", + "declAttributes": [ + "Available", + "ObjC", + "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" + }, + { + "kind": "Conformance", + "name": "Player", + "printedName": "Player", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AVAudioSession", + "printedName": "AVAudioSession", + "declKind": "Class", + "usr": "c:objc(cs)AVAudioSession", + "moduleName": "AVFAudio", + "isOpen": true, + "intro_iOS": "3.0", + "objc_name": "AVAudioSession", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "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": "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": "Session", + "printedName": "Session", + "usr": "s:19PlaudDeviceBasicSDK7SessionP", + "mangledName": "$s19PlaudDeviceBasicSDK7SessionP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BleAgent", + "printedName": "BleAgent", + "children": [ + { + "kind": "Var", + "name": "isSecureChannelEstablished", + "printedName": "isSecureChannelEstablished", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(py)isSecureChannelEstablished", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E26isSecureChannelEstablishedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)isSecureChannelEstablished", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E26isSecureChannelEstablishedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getEncryptionKey", + "printedName": "getEncryptionKey()", + "children": [ + { + "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:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionKey", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E16getEncryptionKeySSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEncryptionNonce", + "printedName": "getEncryptionNonce()", + "children": [ + { + "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:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionNonce", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E18getEncryptionNonceSSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEncryptionAD", + "printedName": "getEncryptionAD()", + "children": [ + { + "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:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionAD", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E15getEncryptionADSSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEncryptionParameters", + "printedName": "getEncryptionParameters()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionParameters", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E23getEncryptionParametersSDyS2SGSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptFileData", + "printedName": "decryptFileData(_: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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)decryptFileData:key:nonce:ad:error:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E15decryptFileData_3key5nonce2ad10Foundation0I0VAK_SSSgA2LtKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptFile", + "printedName": "decryptFile(inputPath:outputPath:key:nonce:ad:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)decryptFileWithInputPath:outputPath:key:nonce:ad:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E11decryptFile9inputPath06outputJ03key5nonce2adSbSS_S2SSgA2KtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "decryptFileWithInputPath:outputPath:key:nonce:ad:", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptAndPrepareOggFile", + "printedName": "decryptAndPrepareOggFile(encryptedFilePath:channel:key:nonce:ad:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)decryptAndPrepareOggFileWithEncryptedFilePath:channel:key:nonce:ad:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E24decryptAndPrepareOggFile09encryptedK4Path7channel3key5nonce2adSSSgSS_s5Int32VA3KtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "decryptAndPrepareOggFileWithEncryptedFilePath:channel:key:nonce:ad:", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "playDecryptedOggFile", + "printedName": "playDecryptedOggFile(encryptedFilePath:channel:delegate:key:nonce:ad:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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": "Optional", + "printedName": "(any PenBleSDK.JXOggPlayerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "JXOggPlayerDelegate", + "printedName": "any PenBleSDK.JXOggPlayerDelegate", + "usr": "c:objc(pl)JXOggPlayerDelegate" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)playDecryptedOggFileWithEncryptedFilePath:channel:delegate:key:nonce:ad:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E20playDecryptedOggFile09encryptedJ4Path7channel8delegate3key5nonce2adSbSS_s5Int32VSo19JXOggPlayerDelegate_pSgSSSgA2PtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "playDecryptedOggFileWithEncryptedFilePath:channel:delegate:key:nonce:ad:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopOggPlayback", + "printedName": "stopOggPlayback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)stopOggPlayback", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E15stopOggPlaybackyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pauseOggPlayback", + "printedName": "pauseOggPlayback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)pauseOggPlayback", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E16pauseOggPlaybackyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resumeOggPlayback", + "printedName": "resumeOggPlayback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)resumeOggPlayback", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E17resumeOggPlaybackyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getOggPlayer", + "printedName": "getOggPlayer()", + "children": [ + { + "kind": "TypeNominal", + "name": "JXOggPlayer", + "printedName": "PenBleSDK.JXOggPlayer", + "usr": "c:objc(cs)JXOggPlayer" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getOggPlayer", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E12getOggPlayerSo05JXOggI0CyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptE2EEAudioFile", + "printedName": "decryptE2EEAudioFile(inputPath:outputPath:privateKeyPem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)decryptE2EEAudioFileWithInputPath:outputPath:privateKeyPem:error:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E20decryptE2EEAudioFile9inputPath06outputL013privateKeyPemS2S_SSSgSStKF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "decryptE2EEAudioFileWithInputPath:outputPath:privateKeyPem:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isE2EEEncryptedFile", + "printedName": "isE2EEEncryptedFile(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:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)isE2EEEncryptedFileWithPath:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E19isE2EEEncryptedFile4pathSbSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "isE2EEEncryptedFileWithPath:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getE2EEFileHeader", + "printedName": "getE2EEFileHeader(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getE2EEFileHeaderWithPath:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E17getE2EEFileHeader4pathAD0a7EncryptJ0CSgSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getE2EEFileHeaderWithPath:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isEncryptionSupported", + "printedName": "isEncryptionSupported", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(py)isEncryptionSupported", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E21isEncryptionSupportedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)isEncryptionSupported", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E21isEncryptionSupportedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getEncryptionProtocolInfo", + "printedName": "getEncryptionProtocolInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionProtocolInfo", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E25getEncryptionProtocolInfoSDySSypGyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent", + "mangledName": "$s11PlaudBleSDK0B5AgentC", + "moduleName": "PlaudBleSDK", + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "BooleanLiteral", + "offset": 549, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "BooleanLiteral", + "offset": 691, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "BooleanLiteral", + "offset": 881, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "StringLiteral", + "offset": 1280, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "BooleanLiteral", + "offset": 1324, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "IntegerLiteral", + "offset": 365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 941, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "Array", + "offset": 10201, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "StringLiteral", + "offset": 10603, + "length": 19, + "value": "\"wifi_network_list\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "IntegerLiteral", + "offset": 10685, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 10728, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 10741, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 10753, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 10766, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 10829, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 10860, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "StringLiteral", + "offset": 11057, + "length": 14, + "value": "\"测试信号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 11129, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 11141, + "length": 4, + "value": "0.48" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 11153, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 11165, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "IntegerLiteral", + "offset": 11245, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 11325, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 11357, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 11458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHArray+EX.swift", + "kind": "IntegerLiteral", + "offset": 1447, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 8, + "value": "0xFD443A" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 8, + "value": "0xA3A3A3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 304, + "length": 8, + "value": "0xA4A4A4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 8, + "value": "0xAAAAAA" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 8, + "value": "0xF2F4F7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 446, + "length": 8, + "value": "0xF2565A" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 493, + "length": 8, + "value": "0xF4F4F4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 540, + "length": 8, + "value": "0xF5F5F5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 587, + "length": 8, + "value": "0xF72222" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 634, + "length": 8, + "value": "0xF8F8F8" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 681, + "length": 8, + "value": "0xF9FAFB" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 728, + "length": 8, + "value": "0xFD573B" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 775, + "length": 8, + "value": "0xFFF7F7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 823, + "length": 8, + "value": "0xE3E3E3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 870, + "length": 8, + "value": "0xE4E7EC" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 921, + "length": 8, + "value": "0x101828" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 971, + "length": 8, + "value": "0x1F1F1F" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1022, + "length": 8, + "value": "0x333334" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1072, + "length": 8, + "value": "0x353535" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1122, + "length": 8, + "value": "0x3A59FD" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1172, + "length": 8, + "value": "0x475467" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1223, + "length": 8, + "value": "0x667085" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 8, + "value": "0x686869" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1324, + "length": 8, + "value": "0x979797" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 8, + "value": "0x98A2B3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1424, + "length": 8, + "value": "0x999999" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1482, + "length": 8, + "value": "0xFCFCFC" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1539, + "length": 8, + "value": "0xC4D5FF" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1596, + "length": 8, + "value": "0xFDFDFD" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1648, + "length": 8, + "value": "0x858597" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1699, + "length": 8, + "value": "0x1A051D" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1750, + "length": 8, + "value": "0x3F3356" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1801, + "length": 8, + "value": "0xD0C9D6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1852, + "length": 8, + "value": "0xECEBED" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1903, + "length": 8, + "value": "0xE02020" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1954, + "length": 8, + "value": "0xB2A9BC" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 2005, + "length": 8, + "value": "0xECE9F1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 2362, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "FloatLiteral", + "offset": 2927, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDate+Extension.swift", + "kind": "IntegerLiteral", + "offset": 2407, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDate+Extension.swift", + "kind": "IntegerLiteral", + "offset": 5690, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2057, + "length": 19, + "value": "\"simulator\/sandbox\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2113, + "length": 8, + "value": "\"iPod 1\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2140, + "length": 8, + "value": "\"iPod 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2167, + "length": 8, + "value": "\"iPod 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2194, + "length": 8, + "value": "\"iPod 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2221, + "length": 8, + "value": "\"iPod 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 8, + "value": "\"iPod 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 8, + "value": "\"iPod 7\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2320, + "length": 8, + "value": "\"iPad 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2347, + "length": 8, + "value": "\"iPad 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2374, + "length": 8, + "value": "\"iPad 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2403, + "length": 11, + "value": "\"iPad Air \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2436, + "length": 12, + "value": "\"iPad Air 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2470, + "length": 12, + "value": "\"iPad Air 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2504, + "length": 12, + "value": "\"iPad Air 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2538, + "length": 12, + "value": "\"iPad Air 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2569, + "length": 8, + "value": "\"iPad 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2609, + "length": 8, + "value": "\"iPad 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2649, + "length": 8, + "value": "\"iPad 7\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2689, + "length": 8, + "value": "\"iPad 8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2729, + "length": 8, + "value": "\"iPad 9\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2795, + "length": 11, + "value": "\"iPad Mini\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2829, + "length": 13, + "value": "\"iPad Mini 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2865, + "length": 13, + "value": "\"iPad Mini 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2901, + "length": 13, + "value": "\"iPad Mini 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2937, + "length": 13, + "value": "\"iPad Mini 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2973, + "length": 13, + "value": "\"iPad Mini 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3032, + "length": 16, + "value": "\"iPad Pro 9.7\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3073, + "length": 17, + "value": "\"iPad Pro 10.5\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3113, + "length": 15, + "value": "\"iPad Pro 11\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3153, + "length": 23, + "value": "\"iPad Pro 11\" 2nd gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3201, + "length": 23, + "value": "\"iPad Pro 11\" 3rd gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3249, + "length": 17, + "value": "\"iPad Pro 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3293, + "length": 19, + "value": "\"iPad Pro 2 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3339, + "length": 19, + "value": "\"iPad Pro 3 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3385, + "length": 19, + "value": "\"iPad Pro 4 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 19, + "value": "\"iPad Pro 5 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3491, + "length": 10, + "value": "\"iPhone 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3523, + "length": 11, + "value": "\"iPhone 4S\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3555, + "length": 10, + "value": "\"iPhone 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3587, + "length": 11, + "value": "\"iPhone 5S\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3620, + "length": 11, + "value": "\"iPhone 5C\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3652, + "length": 10, + "value": "\"iPhone 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3687, + "length": 15, + "value": "\"iPhone 6 Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3724, + "length": 11, + "value": "\"iPhone 6S\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3761, + "length": 16, + "value": "\"iPhone 6S Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3799, + "length": 11, + "value": "\"iPhone SE\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3831, + "length": 10, + "value": "\"iPhone 7\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3866, + "length": 15, + "value": "\"iPhone 7 Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3902, + "length": 10, + "value": "\"iPhone 8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 15, + "value": "\"iPhone 8 Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3973, + "length": 10, + "value": "\"iPhone X\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4005, + "length": 11, + "value": "\"iPhone XS\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 15, + "value": "\"iPhone XS Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 11, + "value": "\"iPhone XR\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4111, + "length": 11, + "value": "\"iPhone 11\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4147, + "length": 15, + "value": "\"iPhone 11 Pro\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4190, + "length": 19, + "value": "\"iPhone 11 Pro Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4232, + "length": 19, + "value": "\"iPhone SE 2nd gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 16, + "value": "\"iPhone 12 Mini\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 11, + "value": "\"iPhone 12\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 15, + "value": "\"iPhone 12 Pro\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4394, + "length": 19, + "value": "\"iPhone 12 Pro Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4439, + "length": 16, + "value": "\"iPhone 13 Mini\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4477, + "length": 11, + "value": "\"iPhone 13\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4513, + "length": 15, + "value": "\"iPhone 13 Pro\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4556, + "length": 19, + "value": "\"iPhone 13 Pro Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4598, + "length": 19, + "value": "\"iPhone SE 3nd gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4639, + "length": 11, + "value": "\"iPhone 14\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4676, + "length": 16, + "value": "\"iPhone 14 Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4717, + "length": 15, + "value": "\"iPhone 14 Pro\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4760, + "length": 19, + "value": "\"iPhone 14 Pro Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4829, + "length": 18, + "value": "\"Apple Watch 1gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4873, + "length": 22, + "value": "\"Apple Watch Series 1\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4921, + "length": 22, + "value": "\"Apple Watch Series 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4969, + "length": 22, + "value": "\"Apple Watch Series 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5017, + "length": 22, + "value": "\"Apple Watch Series 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5065, + "length": 22, + "value": "\"Apple Watch Series 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5113, + "length": 29, + "value": "\"Apple Watch Special Edition\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5168, + "length": 22, + "value": "\"Apple Watch Series 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5216, + "length": 22, + "value": "\"Apple Watch Series 7\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5282, + "length": 15, + "value": "\"Apple TV 1gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5319, + "length": 15, + "value": "\"Apple TV 2gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5356, + "length": 15, + "value": "\"Apple TV 3gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5393, + "length": 15, + "value": "\"Apple TV 4gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5432, + "length": 13, + "value": "\"Apple TV 4K\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5470, + "length": 18, + "value": "\"Apple TV 4K 2gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5515, + "length": 16, + "value": "\"?unrecognized?\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHNavigationController+EX.swift", + "kind": "BooleanLiteral", + "offset": 307, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHString+Extension.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 17, + "value": "\"M\/dd\/yyyy HH:mm\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHString+Extension.swift", + "kind": "StringLiteral", + "offset": 2266, + "length": 21, + "value": "\"yyyy-MM-dd HH:mm:ss\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHString+Extension.swift", + "kind": "IntegerLiteral", + "offset": 5443, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHViewController+Extension.swift", + "kind": "BooleanLiteral", + "offset": 3773, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "IntegerLiteral", + "offset": 656, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "FloatLiteral", + "offset": 1636, + "length": 4, + "value": "30.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "StringLiteral", + "offset": 5429, + "length": 13, + "value": "\"ActionBlock\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "StringLiteral", + "offset": 5476, + "length": 13, + "value": "\"ActionDelay\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "IntegerLiteral", + "offset": 6546, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/OtherExtension.swift", + "kind": "IntegerLiteral", + "offset": 2098, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/OtherExtension.swift", + "kind": "IntegerLiteral", + "offset": 2118, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 397, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "FloatLiteral", + "offset": 10173, + "length": 4, + "value": "30.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "FloatLiteral", + "offset": 10385, + "length": 4, + "value": "30.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10510, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10538, + "length": 2, + "value": "80" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10890, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10916, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10918, + "length": 2, + "value": "80" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "BooleanLiteral", + "offset": 11109, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "BooleanLiteral", + "offset": 11453, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/TestRecognizeSdkOfflineViewController.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 8, + "value": "\"转写\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/TestRecognizeSdkOnlineViewController.swift", + "kind": "StringLiteral", + "offset": 363, + "length": 14, + "value": "\"开始录音\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/TestRecognizeSdkOnlineViewController.swift", + "kind": "StringLiteral", + "offset": 590, + "length": 14, + "value": "\"结束录音\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 621, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 761, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 911, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1279, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1423, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1566, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 1901, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 2019, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 357, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 375, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 391, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "FloatLiteral", + "offset": 677, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "Array", + "offset": 792, + "length": 49, + "value": "[(\"创建时间\", true), (\"修改时间\", false)]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "Array", + "offset": 868, + "length": 16, + "value": "[\"批量管理\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "BooleanLiteral", + "offset": 905, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "BooleanLiteral", + "offset": 4863, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "BooleanLiteral", + "offset": 6133, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "IntegerLiteral", + "offset": 6170, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "IntegerLiteral", + "offset": 8414, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "IntegerLiteral", + "offset": 8437, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 14935, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 14947, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "IntegerLiteral", + "offset": 15096, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 15143, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "BooleanLiteral", + "offset": 15183, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "BooleanLiteral", + "offset": 15227, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 15291, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 15347, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15420, + "length": 24, + "value": "\"indeterminateAnimation\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15475, + "length": 10, + "value": "\"progress\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15525, + "length": 20, + "value": "\"transform.rotation\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15583, + "length": 17, + "value": "\"completionBlock\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15630, + "length": 9, + "value": "\"toValue\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 426, + "length": 14, + "value": "\"创建时间\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 442, + "length": 14, + "value": "\"修改时间\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 519, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "BooleanLiteral", + "offset": 562, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 657, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 806, + "length": 12, + "value": "\"2019-05-28\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 1102, + "length": 12, + "value": "\"2019-05-28\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 1136, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 1249, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 1413, + "length": 8, + "value": "\"取消\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 1634, + "length": 8, + "value": "\"确认\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 1882, + "length": 4, + "value": "\"zh\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 2096, + "length": 4, + "value": "\"zh\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 2261, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 355, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 359, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 366, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "FloatLiteral", + "offset": 636, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "Array", + "offset": 756, + "length": 40, + "value": "[(\"普通话\", true), (\"英文\", false)]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXOperationToolBar.swift", + "kind": "StringLiteral", + "offset": 944, + "length": 8, + "value": "\"全选\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXOperationToolBar.swift", + "kind": "StringLiteral", + "offset": 1550, + "length": 14, + "value": "\"取消收藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "FloatLiteral", + "offset": 307, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "FloatLiteral", + "offset": 319, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "FloatLiteral", + "offset": 389, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "FloatLiteral", + "offset": 401, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "Array", + "offset": 2638, + "length": 49, + "value": "[(\"创建时间\", true), (\"修改时间\", false)]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "Array", + "offset": 2714, + "length": 16, + "value": "[\"批量管理\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "BooleanLiteral", + "offset": 2751, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPresentationController.swift", + "kind": "StringLiteral", + "offset": 1033, + "length": 25, + "value": "\"ShouldHidePresentBottom\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPresentationController.swift", + "kind": "FloatLiteral", + "offset": 1363, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPresentationController.swift", + "kind": "IntegerLiteral", + "offset": 1583, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPresentationController.swift", + "kind": "IntegerLiteral", + "offset": 2430, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 631, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 787, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 819, + "length": 20, + "value": "\"Stop Transcription\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 955, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 1557, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 1601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 2154, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 2198, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 2242, + "length": 14, + "value": "\"停止转写\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 2314, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 2358, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 2390, + "length": 14, + "value": "\"隐藏按钮\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 1501, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 2485, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 2605, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 4233, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4431, + "length": 59, + "value": "\"正在转写文字: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4489, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4546, + "length": 38, + "value": "\"录音结束后可申请全文转写\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 4344, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4774, + "length": 59, + "value": "\"正在转写文字: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4832, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 4898, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 4929, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4971, + "length": 59, + "value": "\"正在转写文字: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 5029, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 5094, + "length": 38, + "value": "\"录音结束后可申请全文转写\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 4686, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "StringLiteral", + "offset": 400, + "length": 8, + "value": "\"333333\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 641, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "StringLiteral", + "offset": 694, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 919, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 1224, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1268, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1297, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1336, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1370, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1497, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 1646, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 5506, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 6302, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordLocationViewController.swift", + "kind": "Array", + "offset": 701, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 415, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 524, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 547, + "length": 8, + "value": "\"提示\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 688, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 20, + "value": "\".SFUIText-Semibold\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 767, + "length": 20, + "value": "\"粗体特殊处理\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 844, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 853, + "length": 3, + "value": "-10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 866, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 876, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 953, + "length": 5, + "value": "\"xxx\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 8, + "value": "\"取消\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "FloatLiteral", + "offset": 1433, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 1557, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "FloatLiteral", + "offset": 1600, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 4329, + "length": 8, + "value": "\"提示\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "BooleanLiteral", + "offset": 4392, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 4415, + "length": 8, + "value": "\"取消\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 4438, + "length": 8, + "value": "\"确定\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionArrayViewController.swift", + "kind": "Array", + "offset": 642, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionArrayViewController.swift", + "kind": "IntegerLiteral", + "offset": 710, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "FloatLiteral", + "offset": 861, + "length": 3, + "value": "0.6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "StringLiteral", + "offset": 911, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTextLabelCell.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 5, + "value": "\"...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTextLabelCell.swift", + "kind": "IntegerLiteral", + "offset": 413, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 809, + "length": 8, + "value": "\"F8F8F8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 982, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 1039, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 1209, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 1332, + "length": 50, + "value": "\"网络服务异常。请检查您的网络设置\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 1642, + "length": 8, + "value": "\"F8F8F8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 1841, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2167, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2199, + "length": 14, + "value": "\"全部暂停\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2343, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2459, + "length": 76, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 36, + "value": "\"个文件待传输,正在传输第\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2531, + "length": 3, + "value": "\"个\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2591, + "length": 39, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2611, + "length": 18, + "value": "\"个文件待传输\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2292, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2768, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2884, + "length": 76, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2904, + "length": 36, + "value": "\"个文件待传输,正在传输第\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2956, + "length": 3, + "value": "\"个\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3016, + "length": 39, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3036, + "length": 18, + "value": "\"个文件待传输\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2717, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 3172, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3288, + "length": 76, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3308, + "length": 36, + "value": "\"个文件待传输,正在传输第\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3360, + "length": 3, + "value": "\"个\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3420, + "length": 39, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3440, + "length": 18, + "value": "\"个文件待传输\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "BooleanLiteral", + "offset": 3118, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 3635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 3672, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 3755, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXUpdateButton.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXUpdateButton.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXUpdateButton.swift", + "kind": "StringLiteral", + "offset": 886, + "length": 14, + "value": "\"下载升级\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXUpdateButton.swift", + "kind": "StringLiteral", + "offset": 932, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1498, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 6, + "value": "\"1.0X\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1660, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1666, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1676, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1687, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 1748, + "length": 3, + "value": "0.6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 1883, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2136, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2185, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2313, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "StringLiteral", + "offset": 2359, + "length": 8, + "value": "\"结束\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2532, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 6, + "value": "\"1.0X\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2033, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2901, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "Array", + "offset": 9083, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 9472, + "length": 4, + "value": "60.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 12377, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 12465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 12516, + "length": 3, + "value": "1.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 12570, + "length": 3, + "value": "1.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 12654, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "StringLiteral", + "offset": 12718, + "length": 8, + "value": "\"B5B5B5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 12887, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 13012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "Array", + "offset": 13114, + "length": 8, + "value": "[(0, 0)]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 13168, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 13221, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13316, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13439, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13505, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13571, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13721, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 13806, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 13955, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 17980, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 18220, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 18429, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 18520, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 19497, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 19533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 19599, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 19603, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 20477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 20528, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 20581, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 22139, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 307, + "length": 20, + "value": "\"请输入手机号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 921, + "length": 45, + "value": "\"请输入6-20位密码,不支持纯数字\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 988, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "BooleanLiteral", + "offset": 1287, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 1563, + "length": 8, + "value": "\"隐藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 1663, + "length": 20, + "value": "\"请输入验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1705, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2296, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 17, + "value": "\"发送验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2449, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2517, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 8, + "value": "\"E6E7EC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2713, + "length": 8, + "value": "\"绑定\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2825, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2893, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2959, + "length": 8, + "value": "\"E6E7EC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3121, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "BooleanLiteral", + "offset": 3175, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "BooleanLiteral", + "offset": 3209, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "BooleanLiteral", + "offset": 3243, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "StringLiteral", + "offset": 556, + "length": 29, + "value": "\"请留下您的手机号码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "IntegerLiteral", + "offset": 776, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 8, + "value": "\"完成\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "BooleanLiteral", + "offset": 1104, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "BooleanLiteral", + "offset": 423, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "IntegerLiteral", + "offset": 479, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "IntegerLiteral", + "offset": 622, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "IntegerLiteral", + "offset": 674, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 8, + "value": "\"完成\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "BooleanLiteral", + "offset": 950, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 373, + "length": 12, + "value": "\"录音笔 \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 646, + "length": 20, + "value": "\".SFUIText-Semibold\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 693, + "length": 23, + "value": "\"pen粗体特殊处理\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 3, + "value": "-10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 795, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 805, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 964, + "length": 11, + "value": "\"手机App\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 1238, + "length": 20, + "value": "\".SFUIText-Semibold\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 23, + "value": "\"app粗体特殊处理\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 3, + "value": "-10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1397, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 19, + "value": "\"MineTableViewCell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell.swift", + "kind": "BooleanLiteral", + "offset": 321, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell.swift", + "kind": "BooleanLiteral", + "offset": 490, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell.swift", + "kind": "BooleanLiteral", + "offset": 797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "StringLiteral", + "offset": 138, + "length": 34, + "value": "\"MineTableViewCell_2TextImageText\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "BooleanLiteral", + "offset": 302, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "BooleanLiteral", + "offset": 609, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "BooleanLiteral", + "offset": 916, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "BooleanLiteral", + "offset": 1246, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextSwitch.swift", + "kind": "StringLiteral", + "offset": 135, + "length": 31, + "value": "\"MineTableViewCell_2TextSwitch\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextSwitch.swift", + "kind": "BooleanLiteral", + "offset": 296, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextSwitch.swift", + "kind": "BooleanLiteral", + "offset": 603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "StringLiteral", + "offset": 131, + "length": 27, + "value": "\"MineTableViewCell_Generic\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "BooleanLiteral", + "offset": 341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "BooleanLiteral", + "offset": 533, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "BooleanLiteral", + "offset": 701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "BooleanLiteral", + "offset": 998, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Image2Text.swift", + "kind": "StringLiteral", + "offset": 134, + "length": 30, + "value": "\"MineTableViewCell_Image2Text\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Image2Text.swift", + "kind": "BooleanLiteral", + "offset": 347, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Image2Text.swift", + "kind": "BooleanLiteral", + "offset": 515, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Image2Text.swift", + "kind": "BooleanLiteral", + "offset": 822, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_MyAvatar.swift", + "kind": "StringLiteral", + "offset": 132, + "length": 28, + "value": "\"MineTableViewCell_MyAvatar\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_MyAvatar.swift", + "kind": "BooleanLiteral", + "offset": 345, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_MyAvatar.swift", + "kind": "BooleanLiteral", + "offset": 592, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_MyAvatar.swift", + "kind": "BooleanLiteral", + "offset": 760, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "StringLiteral", + "offset": 278, + "length": 34, + "value": "\"MineTableViewCell_QualitySegment\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "BooleanLiteral", + "offset": 442, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "StringLiteral", + "offset": 713, + "length": 5, + "value": "\"优\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 5, + "value": "\"高\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "StringLiteral", + "offset": 727, + "length": 5, + "value": "\"中\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 774, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "BooleanLiteral", + "offset": 868, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1176, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1212, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1323, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1879, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1913, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "Array", + "offset": 1978, + "length": 403, + "value": "[\"播放的MP3音频接近真实(不影响转写效果),解码压缩速度一般,可清除缓存重新生成\", \"播放的MP3音频质量高(不影响转写效果),解码压缩速度较快,可清除缓存重新生成\", \"播放的MP3音频质量OK(不影响转写效果),解码压缩速度很快,可清除缓存重新生成\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextImage.swift", + "kind": "StringLiteral", + "offset": 271, + "length": 29, + "value": "\"MineTableViewCell_TextImage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextImage.swift", + "kind": "BooleanLiteral", + "offset": 460, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "StringLiteral", + "offset": 135, + "length": 31, + "value": "\"MineTableViewCell_TextSegment\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "BooleanLiteral", + "offset": 296, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "StringLiteral", + "offset": 567, + "length": 5, + "value": "\"大\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "StringLiteral", + "offset": 574, + "length": 5, + "value": "\"中\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "StringLiteral", + "offset": 581, + "length": 5, + "value": "\"小\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "BooleanLiteral", + "offset": 722, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 818, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 854, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 965, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSwitch.swift", + "kind": "StringLiteral", + "offset": 134, + "length": 30, + "value": "\"MineTableViewCell_TextSwitch\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSwitch.swift", + "kind": "BooleanLiteral", + "offset": 294, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextText.swift", + "kind": "StringLiteral", + "offset": 132, + "length": 28, + "value": "\"MineTableViewCell_TextText\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextText.swift", + "kind": "BooleanLiteral", + "offset": 320, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextText.swift", + "kind": "BooleanLiteral", + "offset": 627, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "StringLiteral", + "offset": 136, + "length": 32, + "value": "\"MineTableViewCell_TextTextNext\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "BooleanLiteral", + "offset": 352, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "BooleanLiteral", + "offset": 520, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "BooleanLiteral", + "offset": 824, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "BooleanLiteral", + "offset": 1047, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 335, + "length": 23, + "value": "\"左眼度数 -700~100\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 380, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 23, + "value": "\"右眼度数 -700~100\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 599, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 776, + "length": 20, + "value": "\"设置近视度数\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 998, + "length": 20, + "value": "\"设置远视度数\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 1220, + "length": 14, + "value": "\"读取度数\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 1428, + "length": 10, + "value": "\"用户ID\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 1460, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 1637, + "length": 16, + "value": "\"切换用户ID\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 1855, + "length": 16, + "value": "\"读取用户ID\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2065, + "length": 20, + "value": "\"充值剩余时长\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 2107, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2284, + "length": 20, + "value": "\"设置剩余时长\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2506, + "length": 20, + "value": "\"读取剩余时长\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2723, + "length": 14, + "value": "\"透支阈值\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 2759, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2939, + "length": 20, + "value": "\"设置透支阈值\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 3164, + "length": 20, + "value": "\"读取透支阈值\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 3386, + "length": 20, + "value": "\"获取记录报表\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 3607, + "length": 20, + "value": "\"清空记录报表\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXAboutViewController.swift", + "kind": "BooleanLiteral", + "offset": 579, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXAboutViewController.swift", + "kind": "Array", + "offset": 720, + "length": 97, + "value": "[(\"官网\", \"http:\/\/www.timotech.cn\/\"), (\"官方微信公众号\", \"xxxxx\"), (\"分享日志\", \"\")]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXTextEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXTextEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 357, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXTextEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXTextEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/CommonSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 100, + "length": 14, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/CommonSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 124, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/CommonSettingSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 101, + "length": 10, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/CommonSettingSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 121, + "length": 12, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/DeviceSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 77, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/DeviceSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 95, + "length": 16, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/MineSectionType.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 13, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/MyInfoDetailSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 82, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/MyInfoDetailSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 100, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/PenManagementSectionType.swift", + "kind": "IntegerLiteral", + "offset": 83, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/PenManagementSectionType.swift", + "kind": "IntegerLiteral", + "offset": 105, + "length": 12, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/SpaceManagementSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 84, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/SpaceSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 80, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/VoiceSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 74, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "IntegerLiteral", + "offset": 395, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "IntegerLiteral", + "offset": 401, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "BooleanLiteral", + "offset": 641, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "IntegerLiteral", + "offset": 711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 200, + "length": 25, + "value": "\"请输入11位手机号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "IntegerLiteral", + "offset": 273, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 45, + "value": "\"请输入6-20位密码,不支持纯数字\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "BooleanLiteral", + "offset": 1049, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 1179, + "length": 8, + "value": "\"隐藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 20, + "value": "\"请输入验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "IntegerLiteral", + "offset": 1376, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "IntegerLiteral", + "offset": 1817, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 1845, + "length": 17, + "value": "\"发送验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 1984, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 2322, + "length": 14, + "value": "\"重置密码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 2458, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1177, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1183, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1193, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1204, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1413, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1485, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "BooleanLiteral", + "offset": 1665, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "BooleanLiteral", + "offset": 1706, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 1815, + "length": 29, + "value": "\"用户协议 | 隐私政策\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1912, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1942, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1953, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 1998, + "length": 18, + "value": "\"userAgreement:\/\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2043, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2054, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 2098, + "length": 12, + "value": "\"privacy:\/\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2137, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2148, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 2522, + "length": 14, + "value": "\"退出登录\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2631, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2642, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2715, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2745, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2756, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "FloatLiteral", + "offset": 2813, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2843, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2854, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 3111, + "length": 14, + "value": "\"注销账号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3220, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3231, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3304, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3334, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3345, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "FloatLiteral", + "offset": 3402, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3432, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3443, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXHelpFeedbackViewController.swift", + "kind": "Array", + "offset": 285, + "length": 32, + "value": "[\"使用指南\", \"意见反馈\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXModifyPwdViewController.swift", + "kind": "StringLiteral", + "offset": 239, + "length": 8, + "value": "\"隐藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXModifyPwdViewController.swift", + "kind": "StringLiteral", + "offset": 358, + "length": 8, + "value": "\"隐藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXModifyPwdViewController.swift", + "kind": "BooleanLiteral", + "offset": 478, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXModifyPwdViewController.swift", + "kind": "BooleanLiteral", + "offset": 514, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 343, + "length": 20, + "value": "\"请输入手机号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 385, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 745, + "length": 20, + "value": "\"请输入验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 787, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1199, + "length": 17, + "value": "\"发送验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1320, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1388, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1454, + "length": 8, + "value": "\"E6E7EC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1587, + "length": 8, + "value": "\"完成\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1699, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1767, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1833, + "length": 8, + "value": "\"E6E7EC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "BooleanLiteral", + "offset": 1949, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "BooleanLiteral", + "offset": 1983, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "IntegerLiteral", + "offset": 237, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "BooleanLiteral", + "offset": 330, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/RuntimeEvn_wechat.swift", + "kind": "StringLiteral", + "offset": 86, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/RuntimeEvn_wechat.swift", + "kind": "StringLiteral", + "offset": 127, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "BooleanLiteral", + "offset": 376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "BooleanLiteral", + "offset": 434, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 637, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 699, + "length": 12, + "value": "\"Version --\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 804, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 857, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 888, + "length": 20, + "value": "\"已是最新版本\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1014, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1067, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1098, + "length": 15, + "value": "\"版本大小:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1227, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1325, + "length": 17, + "value": "\"版本修改:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1450, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1557, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1580, + "length": 17, + "value": "\"修复若干bug\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1851, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1904, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1982, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 105, + "value": "\"提示:升级过程需要10分钟左右,在此期间请保持录\n音笔与手机的蓝牙连接。\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 616, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 783, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 14, + "value": "\"解除绑定\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1093, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1104, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1177, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1207, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1218, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "FloatLiteral", + "offset": 1275, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1305, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1316, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "StringLiteral", + "offset": 1489, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "BooleanLiteral", + "offset": 1522, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 518, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 618, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 624, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 8, + "value": "\"F8F8F8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 894, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 947, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 978, + "length": 70, + "value": "\"名称后缀4位数为录音笔SN倒数第7位到倒数第4位数字\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 1180, + "length": 44, + "value": "\"没有发现我的设备? | 重新搜索\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1298, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1328, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1339, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1441, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1452, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1554, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1665, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1793, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1805, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 1855, + "length": 21, + "value": "\"cannotFindDevice:\/\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1903, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1914, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 1964, + "length": 11, + "value": "\"rescan:\/\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 2014, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "BooleanLiteral", + "offset": 2094, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "BooleanLiteral", + "offset": 2135, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 2431, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 2484, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 2515, + "length": 26, + "value": "\"搜索附近录音笔...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "Array", + "offset": 2622, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "BooleanLiteral", + "offset": 442, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 12, + "value": "\"recordCell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 758, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 802, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "StringLiteral", + "offset": 879, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "StringLiteral", + "offset": 996, + "length": 8, + "value": "\"全选\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 2614, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 2749, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "Array", + "offset": 2861, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "Array", + "offset": 2903, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "BooleanLiteral", + "offset": 577, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "IntegerLiteral", + "offset": 682, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "Array", + "offset": 781, + "length": 563, + "value": "[[(\"WiFi快传\", \"快速将笔中的录音文件传输到手机APP端。\")], [(\"如何开启?\", \"首先将录音笔与手机APP连接蓝牙。单机笔端WiFi按钮开启WiFi热点,然后在APP端根据引导连接到WiFi热点即可。\n注意:WiFi快传模式下,录音笔只能传输文件,不能录音。\"), (\"如何关闭?\", \"在WiFi快传模式下,单机笔端WiFi按钮即可断开WiFi连接。录音笔将自动恢复蓝牙连接。\")]]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "IntegerLiteral", + "offset": 4328, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "IntegerLiteral", + "offset": 4458, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TabVCs\/JXTabBarController.swift", + "kind": "StringLiteral", + "offset": 262, + "length": 8, + "value": "\"全部\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TabVCs\/JXTabBarController.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 14, + "value": "\"全部录音\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 337, + "length": 17, + "value": "\"当前版本:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 396, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 772, + "length": 17, + "value": "\"目标版本:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 831, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 1205, + "length": 14, + "value": "\"OTA文件:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 1261, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 4, + "value": "\"--\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 1429, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 1558, + "length": 11, + "value": "\"OTA升级\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 1636, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 1824, + "length": 17, + "value": "\"选择OTA文件\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 1908, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 2054, + "length": 17, + "value": "\"\/Documents\/ota\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 2102, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/VideoViewController.swift", + "kind": "StringLiteral", + "offset": 446, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/VideoViewController.swift", + "kind": "StringLiteral", + "offset": 572, + "length": 11, + "value": "\"RecordPen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/VideoViewController.swift", + "kind": "Array", + "offset": 602, + "length": 52, + "value": "[\"UIImagePicker\", \"AVCaptureMovie\", \"AVAssetWriter\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 15, + "value": "\"allRecordCell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "IntegerLiteral", + "offset": 574, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "IntegerLiteral", + "offset": 584, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "IntegerLiteral", + "offset": 595, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 253, + "length": 12, + "value": "\"deviceName\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 422, + "length": 9, + "value": "\"confirm\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 8, + "value": "\"toOpen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 577, + "length": 16, + "value": "\"openBleContent\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 636, + "length": 11, + "value": "\"toSetting\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 690, + "length": 8, + "value": "\"record\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 741, + "length": 8, + "value": "\"search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 6, + "value": "\"mine\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 841, + "length": 12, + "value": "\"disconnect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 896, + "length": 8, + "value": "\"delete\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 947, + "length": 11, + "value": "\"editTitle\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1001, + "length": 9, + "value": "\"collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1103, + "length": 13, + "value": "\"syncFileErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1159, + "length": 18, + "value": "\"recordDateFormat\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1220, + "length": 16, + "value": "\"hourTimeFormat\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1279, + "length": 12, + "value": "\"dateFormat\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 13, + "value": "\"poorStorage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1390, + "length": 20, + "value": "\"poorStorageMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1453, + "length": 17, + "value": "\"recognizeResult\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1513, + "length": 14, + "value": "\"scanMyDevice\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1570, + "length": 15, + "value": "\"noDeviceFound\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1628, + "length": 8, + "value": "\"reScan\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1679, + "length": 11, + "value": "\"snMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 12, + "value": "\"penManager\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1788, + "length": 15, + "value": "\"cancelConnect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1846, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1898, + "length": 14, + "value": "\"messageTitle\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1955, + "length": 21, + "value": "\"cancelFailedMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2019, + "length": 9, + "value": "\"bleName\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2071, + "length": 17, + "value": "\"firmwareVersion\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2131, + "length": 16, + "value": "\"storageManager\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2190, + "length": 6, + "value": "\"free\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2239, + "length": 11, + "value": "\"autoClear\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2293, + "length": 18, + "value": "\"autoClearMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2354, + "length": 14, + "value": "\"secretRecord\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2411, + "length": 21, + "value": "\"secretRecordMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2475, + "length": 9, + "value": "\"privacy\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2527, + "length": 16, + "value": "\"privacyMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2586, + "length": 5, + "value": "\"vad\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2634, + "length": 12, + "value": "\"vadMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2689, + "length": 15, + "value": "\"penFileManage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2747, + "length": 7, + "value": "\"clear\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2797, + "length": 14, + "value": "\"recordNormal\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2854, + "length": 12, + "value": "\"recordSync\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2909, + "length": 18, + "value": "\"recordConnectErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2970, + "length": 15, + "value": "\"recordFullErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3028, + "length": 14, + "value": "\"recordUSBErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3085, + "length": 19, + "value": "\"recordHardwareErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3147, + "length": 14, + "value": "\"recordFailed\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 13, + "value": "\"user_openid\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3287, + "length": 12, + "value": "\"user_token\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3347, + "length": 17, + "value": "\"user_login_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3459, + "length": 16, + "value": "\"user_login_pwd\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3554, + "length": 20, + "value": "\"user_all_sort_mode\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3650, + "length": 24, + "value": "\"user_collect_sort_mode\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3745, + "length": 16, + "value": "\"user_font_size\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3853, + "length": 18, + "value": "\"user_mp3_quality\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3950, + "length": 14, + "value": "\"user_address\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 21, + "value": "\"user_search_records\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4125, + "length": 17, + "value": "\"user_filter_arr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 16, + "value": "\"user_developer\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 17, + "value": "\"user_recog_mode\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4363, + "length": 23, + "value": "\"user_recog_audio_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4457, + "length": 18, + "value": "\"user_server_host\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4625, + "length": 14, + "value": "\"update_info_\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4705, + "length": 17, + "value": "\"last_sessionId_\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4796, + "length": 15, + "value": "\"save_binding_\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4889, + "length": 18, + "value": "\"last_lang_online\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5025, + "length": 16, + "value": "\"png_no_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5084, + "length": 13, + "value": "\"png_no_help\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5140, + "length": 12, + "value": "\"png_no_pen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5195, + "length": 15, + "value": "\"png_no_record\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5253, + "length": 15, + "value": "\"png_no_search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5311, + "length": 13, + "value": "\"png_no_text\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5368, + "length": 10, + "value": "\"svg_menu\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5421, + "length": 9, + "value": "\"svg_pen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5473, + "length": 14, + "value": "\"svn_pen_wifi\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5531, + "length": 17, + "value": "\"png_download_bg\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5591, + "length": 23, + "value": "\"png_download_progress\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5657, + "length": 10, + "value": "\"png_logo\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5710, + "length": 15, + "value": "\"png_play_logo\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5768, + "length": 15, + "value": "\"png_scan_icon\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5826, + "length": 15, + "value": "\"png_scan_wave\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5885, + "length": 10, + "value": "\"png_wait\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5938, + "length": 18, + "value": "\"png_info_disable\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5999, + "length": 10, + "value": "\"png_info\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6052, + "length": 18, + "value": "\"png_play_disable\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6113, + "length": 10, + "value": "\"png_play\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6166, + "length": 11, + "value": "\"png_pause\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6220, + "length": 19, + "value": "\"png_share_disable\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6282, + "length": 11, + "value": "\"png_share\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6337, + "length": 20, + "value": "\"manager_center_ble\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6400, + "length": 13, + "value": "\"meituan_ble\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6456, + "length": 17, + "value": "\"png_lang_select\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6516, + "length": 8, + "value": "\"png_ok\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6567, + "length": 14, + "value": "\"png_progress\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6624, + "length": 13, + "value": "\"setting_ble\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6681, + "length": 14, + "value": "\"svg_power_10\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6738, + "length": 14, + "value": "\"svg_power_20\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6795, + "length": 14, + "value": "\"svg_power_30\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6852, + "length": 14, + "value": "\"svg_power_40\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6909, + "length": 14, + "value": "\"svg_power_50\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6966, + "length": 14, + "value": "\"svg_power_60\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7023, + "length": 14, + "value": "\"svg_power_70\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7080, + "length": 14, + "value": "\"svg_power_80\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7137, + "length": 14, + "value": "\"svg_power_90\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7194, + "length": 15, + "value": "\"svg_power_100\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7253, + "length": 9, + "value": "\"svg_add\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7305, + "length": 10, + "value": "\"svg_back\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7358, + "length": 9, + "value": "\"svg_ble\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7410, + "length": 11, + "value": "\"svg_clear\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7464, + "length": 11, + "value": "\"svg_close\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7518, + "length": 14, + "value": "\"svg_download\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7575, + "length": 21, + "value": "\"svg_firmware_update\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7639, + "length": 11, + "value": "\"svg_light\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7693, + "length": 19, + "value": "\"svg_loading_small\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7755, + "length": 9, + "value": "\"svg_new\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7807, + "length": 10, + "value": "\"svg_next\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7860, + "length": 13, + "value": "\"svg_privacy\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7916, + "length": 16, + "value": "\"svg_record_nor\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7975, + "length": 17, + "value": "\"svg_record_sync\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8035, + "length": 17, + "value": "\"svg_red_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8095, + "length": 12, + "value": "\"svg_search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8150, + "length": 14, + "value": "\"svg_selected\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8207, + "length": 13, + "value": "\"svg_storage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8263, + "length": 16, + "value": "\"svg_time_start\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8322, + "length": 16, + "value": "\"svg_unselected\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8381, + "length": 19, + "value": "\"svg_white_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8443, + "length": 18, + "value": "\"svg_white_delete\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8504, + "length": 16, + "value": "\"svg_white_edit\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8563, + "length": 17, + "value": "\"svg_white_share\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8624, + "length": 13, + "value": "\"tab_all_sel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8680, + "length": 9, + "value": "\"tab_all\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8732, + "length": 17, + "value": "\"tab_collect_sel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8792, + "length": 13, + "value": "\"tab_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8849, + "length": 14, + "value": "\"tab_mine_sel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8906, + "length": 10, + "value": "\"tab_mine\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8959, + "length": 16, + "value": "\"tab_search_sel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9018, + "length": 12, + "value": "\"tab_search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9073, + "length": 17, + "value": "\"tab_more_action\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9134, + "length": 11, + "value": "\"png_alarm\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9188, + "length": 13, + "value": "\"png_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9244, + "length": 17, + "value": "\"png_item_select\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9304, + "length": 18, + "value": "\"png_head_default\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9365, + "length": 17, + "value": "\"png_filter_date\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9425, + "length": 25, + "value": "\"png_list_item_no_select\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9493, + "length": 22, + "value": "\"png_list_item_select\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9558, + "length": 24, + "value": "\"png_list_item_unselect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9625, + "length": 13, + "value": "\"png_list_op\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9681, + "length": 14, + "value": "\"png_location\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9738, + "length": 14, + "value": "\"png_mark_new\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9795, + "length": 14, + "value": "\"png_recoging\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9852, + "length": 13, + "value": "\"png_red_dot\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9908, + "length": 12, + "value": "\"png_search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9963, + "length": 15, + "value": "\"png_sort_mode\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10021, + "length": 18, + "value": "\"png_sync_disable\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10082, + "length": 13, + "value": "\"png_sync_on\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10138, + "length": 16, + "value": "\"png_sync_pause\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10197, + "length": 15, + "value": "\"png_sync_wait\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10255, + "length": 11, + "value": "\"png_trans\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10309, + "length": 15, + "value": "\"png_uncollect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10491, + "length": 24, + "value": "\"ResetWindowRoot2TabBar\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10641, + "length": 22, + "value": "\"ResetWindowRootLogin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10752, + "length": 16, + "value": "\"NetworkChanged\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10872, + "length": 16, + "value": "\"EndShorthandVC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10998, + "length": 23, + "value": "\"DeviceConnectOrBindOK\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11103, + "length": 13, + "value": "\"CancelRecog\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11196, + "length": 9, + "value": "\"Depaire\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11313, + "length": 18, + "value": "\"AllRecordRefresh\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11458, + "length": 20, + "value": "\"AllRecordFilesBack\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11583, + "length": 19, + "value": "\"AllRecordPenState\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11661, + "length": 15, + "value": "\"AllRecordBind\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11778, + "length": 17, + "value": "\"AllRecordLocate\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11890, + "length": 19, + "value": "\"RecogStateChanged\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 12017, + "length": 20, + "value": "\"RecogCellHighLight\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 12160, + "length": 22, + "value": "\"RecordEditTimeChange\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 12285, + "length": 22, + "value": "\"TextViewKeyboardDone\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 12416, + "length": 16, + "value": "\"HideLangSelect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "Array", + "offset": 374, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "Array", + "offset": 471, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "Array", + "offset": 4562, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 4731, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 4788, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "BooleanLiteral", + "offset": 4931, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 4968, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "BooleanLiteral", + "offset": 5034, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "BooleanLiteral", + "offset": 8284, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22248, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22310, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22366, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22425, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22470, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXFPSMonitor.swift", + "kind": "IntegerLiteral", + "offset": 641, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXFPSMonitor.swift", + "kind": "FloatLiteral", + "offset": 671, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXFPSMonitor.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "BooleanLiteral", + "offset": 306, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "IntegerLiteral", + "offset": 6016, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "IntegerLiteral", + "offset": 11925, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 11945, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "IntegerLiteral", + "offset": 12089, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12109, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12130, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "IntegerLiteral", + "offset": 12155, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12291, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12312, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12333, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12358, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12387, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12443, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12472, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12497, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12526, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "BooleanLiteral", + "offset": 375, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 612, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 16111, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 16134, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 16155, + "length": 3, + "value": "1.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 16177, + "length": 3, + "value": "2.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRouter.swift", + "kind": "FloatLiteral", + "offset": 2222, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRouter.swift", + "kind": "BooleanLiteral", + "offset": 2246, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSearcher.swift", + "kind": "BooleanLiteral", + "offset": 374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSearcher.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 14, + "value": "\"search_queue\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 572, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 639, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 690, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 1701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 1782, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 2134, + "length": 3, + "value": "600" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 3321, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 3356, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 3554, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 3590, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "FloatLiteral", + "offset": 25069, + "length": 4, + "value": "30.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 25926, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 26741, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 26807, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "StringLiteral", + "offset": 31248, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 31300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 31814, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 31839, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 34224, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 37025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 37094, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 105, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 159, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 219, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 296, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 342, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 388, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 434, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 515, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 579, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "BooleanLiteral", + "offset": 728, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 802, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 932, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 989, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 1060, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "BooleanLiteral", + "offset": 1132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 2894, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "BooleanLiteral", + "offset": 2913, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 2894, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "StringLiteral", + "offset": 3788, + "length": 39, + "value": "\"com.moonlightapps.SwiftySound.enabled\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 4264, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "StringLiteral", + "offset": 5845, + "length": 48, + "value": "\"com.moonlightapps.SwiftySound.stopNotification\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 6365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "BooleanLiteral", + "offset": 7422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 8440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 9134, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "StringLiteral", + "offset": 11829, + "length": 53, + "value": "\"com.moonlightapps.SwiftySound.associatedCallbackKey\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "BooleanLiteral", + "offset": 292, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "BooleanLiteral", + "offset": 654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "IntegerLiteral", + "offset": 817, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 860, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 873, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 885, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 898, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "StringLiteral", + "offset": 962, + "length": 15, + "value": "\"00:00 \/ 00:00\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "BooleanLiteral", + "offset": 1036, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1248, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1327, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1339, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1350, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1362, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1419, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1431, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1442, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1454, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "BooleanLiteral", + "offset": 1518, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "BooleanLiteral", + "offset": 418, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "BooleanLiteral", + "offset": 475, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 540, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 819, + "length": 5, + "value": "16000" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 902, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 990, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudDomainManager.swift", + "kind": "BooleanLiteral", + "offset": 1593, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "Dictionary", + "offset": 948, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "IntegerLiteral", + "offset": 1022, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "IntegerLiteral", + "offset": 1082, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "IntegerLiteral", + "offset": 1168, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "IntegerLiteral", + "offset": 1483, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLocalizationManager.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 21, + "value": "\"PlaudDeviceBasicSDK\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 22, + "value": "\"com.plaud.log.upload\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 21, + "value": "\"com.plaud.log.timer\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "BooleanLiteral", + "offset": 1018, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "Array", + "offset": 1069, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "BooleanLiteral", + "offset": 1110, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "IntegerLiteral", + "offset": 36223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "IntegerLiteral", + "offset": 36254, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "IntegerLiteral", + "offset": 36281, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 12, + "value": "\"public_key\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 659, + "length": 13, + "value": "\"private_key\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3150, + "length": 14, + "value": "\"PartnerToken\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3230, + "length": 18, + "value": "\"$(PARTNER_TOKEN)\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3269, + "length": 59, + "value": "\"[PlaudPartnerApiManager] ✅ Token loaded from Info.plist\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3379, + "length": 74, + "value": "\"[PlaudPartnerApiManager] ⚠️ Token NOT available! raw=\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3446, + "length": 5, + "value": "\"nil\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3452, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 148, + "value": "\"[PlaudPartnerApiManager] 💡 Ensure: 1) ios\/PartnerConfig.xcconfig exists and contains PARTNER_TOKEN 2) pod install has been run 3) clean build\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 475, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 505, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 631, + "length": 45, + "value": "\"PlaudSDKPermissionManager.permissions.cache\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 710, + "length": 52, + "value": "\"PlaudSDKPermissionManager.permissions.cache.expire\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 798, + "length": 42, + "value": "\"PlaudSDKPermissionManager.sdkToken.cache\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 877, + "length": 49, + "value": "\"PlaudSDKPermissionManager.sdkToken.cache.expire\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 149, + "length": 9, + "value": "\"PENDING\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 178, + "length": 9, + "value": "\"RUNNING\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 10, + "value": "\"PROGRESS\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 238, + "length": 9, + "value": "\"SUCCESS\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 9, + "value": "\"FAILURE\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 298, + "length": 11, + "value": "\"CANCELLED\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 9, + "value": "\"TIMEOUT\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 2437, + "length": 18, + "value": "\"audio_transcribe\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 14, + "value": "\"ai_summarize\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 2511, + "length": 8, + "value": "\"ai_etl\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 2542, + "length": 13, + "value": "\"audio_merge\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 3524, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 3558, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "Dictionary", + "offset": 3596, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "Dictionary", + "offset": 4074, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "Dictionary", + "offset": 4689, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 5471, + "length": 11, + "value": "\"task_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 5509, + "length": 13, + "value": "\"task_params\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6190, + "length": 17, + "value": "\"organization_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6231, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6266, + "length": 11, + "value": "\"device_sn\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6304, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6663, + "length": 5, + "value": "\"1.0\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7390, + "length": 10, + "value": "\"end_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7427, + "length": 13, + "value": "\"update_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7463, + "length": 9, + "value": "\"file_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7498, + "length": 12, + "value": "\"start_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7555, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7594, + "length": 15, + "value": "\"metadata_json\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7636, + "length": 13, + "value": "\"total_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7680, + "length": 17, + "value": "\"completed_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11430, + "length": 10, + "value": "\"end_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11467, + "length": 13, + "value": "\"update_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11503, + "length": 9, + "value": "\"file_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11538, + "length": 12, + "value": "\"start_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11595, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11634, + "length": 15, + "value": "\"metadata_json\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11680, + "length": 17, + "value": "\"completed_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11724, + "length": 13, + "value": "\"total_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11820, + "length": 27, + "value": "\"estimated_completion_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11876, + "length": 15, + "value": "\"task_statuses\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14735, + "length": 10, + "value": "\"end_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14772, + "length": 13, + "value": "\"update_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14808, + "length": 9, + "value": "\"file_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14843, + "length": 12, + "value": "\"start_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14900, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14939, + "length": 15, + "value": "\"metadata_json\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14985, + "length": 17, + "value": "\"completed_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 15029, + "length": 13, + "value": "\"total_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 15125, + "length": 27, + "value": "\"estimated_completion_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 15181, + "length": 15, + "value": "\"task_statuses\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 24508, + "length": 13, + "value": "\"deal_reason\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 24550, + "length": 16, + "value": "\"no_deal_reason\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25569, + "length": 28, + "value": "\"assessment_treatment_pairs\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25660, + "length": 24, + "value": "\"communication_feedback\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25715, + "length": 17, + "value": "\"clinical_report\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25833, + "length": 19, + "value": "\"customer_projects\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25903, + "length": 15, + "value": "\"deal_analysis\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25949, + "length": 17, + "value": "\"doctor_projects\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 27924, + "length": 12, + "value": "\"key_points\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 27964, + "length": 14, + "value": "\"action_items\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34044, + "length": 12, + "value": "\"summary_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34089, + "length": 20, + "value": "\"select_prompt_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34140, + "length": 17, + "value": "\"speaker_mapping\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34184, + "length": 13, + "value": "\"use_persona\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34245, + "length": 13, + "value": "\"tokens_lens\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34285, + "length": 13, + "value": "\"retry_count\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34368, + "length": 15, + "value": "\"ai_suggestion\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34533, + "length": 11, + "value": "\"text_lens\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35079, + "length": 19, + "value": "\"industry_category\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35127, + "length": 15, + "value": "\"language_code\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35199, + "length": 21, + "value": "\"recommend_questions\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35248, + "length": 14, + "value": "\"summary_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35295, + "length": 19, + "value": "\"original_category\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35340, + "length": 12, + "value": "\"summary_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35686, + "length": 14, + "value": "\"main_purpose\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36218, + "length": 16, + "value": "\"ai_suggestions\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36261, + "length": 13, + "value": "\"insert_more\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36342, + "length": 11, + "value": "\"date_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36725, + "length": 22, + "value": "\"speaker_name_mapping\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36841, + "length": 15, + "value": "\"ai_suggestion\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 37775, + "length": 14, + "value": "\"task_results\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 37817, + "length": 14, + "value": "\"completed_at\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 37936, + "length": 27, + "value": "\"estimated_completion_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 37992, + "length": 15, + "value": "\"task_statuses\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 42124, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 42231, + "length": 3, + "value": "5.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "IntegerLiteral", + "offset": 42300, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 59149, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 63009, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 63043, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "Dictionary", + "offset": 64007, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 65529, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 65563, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 68081, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 68115, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 68192, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 69650, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 69684, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 69786, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 71750, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 71784, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 71858, + "length": 9, + "value": "\"MEETING\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 71924, + "length": 8, + "value": "\"openai\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "IntegerLiteral", + "offset": 71959, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 71994, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 73975, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 75138, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 304, + "length": 30, + "value": "\"https:\/\/platform-jp.plaud.ai\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 18, + "value": "\"client_14fb62...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 492, + "length": 13, + "value": "\"sk_yueBq...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 582, + "length": 18, + "value": "\"org_000b46e9-...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 670, + "length": 19, + "value": "\"orgu_23f91cee-...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 790, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 834, + "length": 20, + "value": "\"sn-linkedcare-test\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 932, + "length": 23, + "value": "\"linkedcare_aesthetics\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 1010, + "length": 23, + "value": "\"linkedcare_aesthetics\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4561, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4600, + "length": 15, + "value": "\"metadata_json\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4638, + "length": 9, + "value": "\"file_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4737, + "length": 14, + "value": "\"task_results\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4779, + "length": 14, + "value": "\"completed_at\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4898, + "length": 27, + "value": "\"estimated_completion_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4954, + "length": 15, + "value": "\"task_statuses\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 19557, + "length": 9, + "value": "\"task_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 19591, + "length": 11, + "value": "\"task_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 19648, + "length": 12, + "value": "\"start_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 19684, + "length": 10, + "value": "\"end_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 11062, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 11095, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 11124, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 11154, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 12161, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "Array", + "offset": 566, + "length": 24, + "value": "[0x4F, 0x67, 0x67, 0x53]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "Array", + "offset": 651, + "length": 48, + "value": "[0x4F, 0x70, 0x75, 0x73, 0x48, 0x65, 0x61, 0x64]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 1029, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 1281, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 19332, + "length": 4, + "value": "0x14" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 19383, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 19432, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 19806, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 19907, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 20027, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 20179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Array", + "offset": 20269, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 20388, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 20461, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 20489, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 20520, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 20703, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 20896, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 21078, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 21243, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Dictionary", + "offset": 22616, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Dictionary", + "offset": 23621, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 24465, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Dictionary", + "offset": 24496, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 29454, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 29919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 30393, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 52551, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 52596, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 52692, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 53826, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Dictionary", + "offset": 71058, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4782, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4803, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4821, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4847, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4877, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 5418, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "BooleanLiteral", + "offset": 7234, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 407, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 418, + "length": 13, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 441, + "length": 18, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 14, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 493, + "length": 10, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 513, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 534, + "length": 9, + "value": "6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 13, + "value": "7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 576, + "length": 24, + "value": "8" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 10, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 642, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 177, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 202, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 252, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1092, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1120, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1152, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1178, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1204, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1231, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "BooleanLiteral", + "offset": 1251, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1712, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "Array", + "offset": 1795, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1857, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "BooleanLiteral", + "offset": 1894, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1933, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1997, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "BooleanLiteral", + "offset": 619, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 1638, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 1679, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "BooleanLiteral", + "offset": 1707, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 3958, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 3999, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 5072, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "BooleanLiteral", + "offset": 5137, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 6510, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 6551, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 10490, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 10528, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "BooleanLiteral", + "offset": 10552, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 11111, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 11149, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+UpdateManager.swift", + "kind": "StringLiteral", + "offset": 4635, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+UpdateManager.swift", + "kind": "StringLiteral", + "offset": 4676, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+UpdateManager.swift", + "kind": "StringLiteral", + "offset": 15251, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+UpdateManager.swift", + "kind": "StringLiteral", + "offset": 15292, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "IntegerLiteral", + "offset": 451, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 505, + "length": 10, + "value": "\"PLAUD.AI\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "BooleanLiteral", + "offset": 4091, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4380, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4455, + "length": 548, + "value": "\"PlaudEncryptHeader {\n magic: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4547, + "length": 5, + "value": "\"N\/A\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4553, + "length": 7, + "value": "\"\n version: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4583, + "length": 10, + "value": "\"\n headerSize: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4624, + "length": 3, + "value": "\"\n crc: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4646, + "length": 6, + "value": "\"\n userId: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4680, + "length": 8, + "value": "\"\n fileType: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4712, + "length": 7, + "value": "\"\n channel: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4742, + "length": 11, + "value": "\"\n encryptType: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4780, + "length": 8, + "value": "\"\n duration: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4812, + "length": 1, + "value": "\"s\n counter: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4843, + "length": 5, + "value": "\"\n nonce: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4890, + "length": 6, + "value": "\"%02X\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4913, + "length": 7, + "value": "\"\n segment: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4943, + "length": 11, + "value": "\"\n isEncrypted: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4981, + "length": 1, + "value": "\"\n}\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "Dictionary", + "offset": 158, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "StringLiteral", + "offset": 207, + "length": 28, + "value": "\"com.plaud.PlaudFileManager\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 2501, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 3069, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 5148, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 6426, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 6913, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 9875, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 802, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 811, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 816, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 948, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 960, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 1202, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 1379, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1472, + "length": 29, + "value": "\"PlaudLogConfig_MaxFileCount\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1534, + "length": 27, + "value": "\"PlaudLogConfig_MaxFileAge\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1595, + "length": 28, + "value": "\"PlaudLogConfig_MaxFileSize\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1660, + "length": 31, + "value": "\"PlaudLogConfig_UploadInterval\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1727, + "length": 30, + "value": "\"PlaudLogConfig_UploadTimeout\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2190, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2233, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2243, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2276, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2281, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2288, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 3495, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 3594, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 5560, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 5685, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 5692, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 5834, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 8023, + "length": 30, + "value": "\"PlaudLogConfigurationChanged\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogFileRotationManager.swift", + "kind": "StringLiteral", + "offset": 560, + "length": 24, + "value": "\"com.plaud.log.rotation\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4790, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 4927, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 5081, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "Array", + "offset": 5788, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5963, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 6041, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 6151, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "Dictionary", + "offset": 6286, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "Dictionary", + "offset": 6407, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 6535, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 6619, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "StringLiteral", + "offset": 6696, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 6847, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 7182, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "FloatLiteral", + "offset": 7231, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "StringLiteral", + "offset": 7304, + "length": 22, + "value": "\"com.plaud.wifi.speed\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "Dictionary", + "offset": 10457, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 11702, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 12266, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 13848, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 14271, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 14289, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 14582, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 14862, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 15746, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 287, + "length": 19, + "value": "\"com.plaud.sdk.rsa\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 350, + "length": 17, + "value": "\"rsa_private_key\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 410, + "length": 16, + "value": "\"rsa_public_key\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 629, + "length": 15, + "value": "\"sn_signature_\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "Dictionary", + "offset": 705, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 751, + "length": 498, + "value": "\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw\/BD435WcKrtWYOUDlmG\nY1PfmsJYMV3KA+3T4wg7MC+LD1NucvXrC7ug\/BMIYbScvIucsEgRSg0e2BeGkDDu\nPOUmestC71RuZIptIKCjA8pHndTew4TGhqMVT2V8VuCiOPyqL10GeIYtdqthHxAs\nhNgL7ZmpX1gS3+R\/dcyigv+BgSNwUPRMzdSgR3fsIlqBIsoCkl6u87fnT3ymafYa\nYdwDqhMgyc5OEhpyrSqWuSb9FAtKbzS3C7vvPUM8Ntao0sbu7dh1ux\/EPgBfqEgt\n0XlrQdhRn0JnwHhQUwyOpvqRUUUyS06d4XRMD\/vl47\/Zix21TWz7YuT2xYdpXJEG\n+QIDAQAB\n-----END PUBLIC KEY-----\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 1293, + "length": 1827, + "value": "\"-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDD8EPjflZwqu1Z\ng5QOWYZjU9+awlgxXcoD7dPjCDswL4sPU25y9esLu6D8EwhhtJy8i5ywSBFKDR7Y\nF4aQMO485SZ6y0LvVG5kim0goKMDyked1N7DhMaGoxVPZXxW4KI4\/KovXQZ4hi12\nq2EfECyE2AvtmalfWBLf5H91zKKC\/4GBI3BQ9EzN1KBHd+wiWoEiygKSXq7zt+dP\nfKZp9hph3AOqEyDJzk4SGnKtKpa5Jv0UC0pvNLcLu+89Qzw21qjSxu7t2HW7H8Q+\nAF+oSC3ReWtB2FGfQmfAeFBTDI6m+pFRRTJLTp3hdEwP++Xjv9mLHbVNbPti5PbF\nh2lckQb5AgMBAAECggEAFRpjDXT1dWQLdTklMJh2z2rgqeflnMeHsv2h9RFVYp60\nQP3Q5wPSgWx\/bbbVD8Tmnq4AvcG9Tvbzy\/1Yql4Cwr9BcjdDKcizrRN1pm52sDlQ\nllCvf2plAWo+KNN63VaLUkzwPXKs+D0nV2Ek8DYLPXGRc1E5+0FeowuWqMbV9\/rB\nizGjU2wVOoDajpBlE+TTlCrcE1JqkR4Y+3v55ReMxnLY\/GvdYIf0Rn7fZRo6CNw5\nlpKz+52ecC4DnnIDSGOHfMRCLIwRfXTZu2+Vp9Egs5KU7uV1JXlObLsP7u7LGQk3\n6nYvDZFR1qLOq1eABqJ4ZGWL4jynIrmdvSIooDflAQKBgQDvhFtpeC1jQTuY8pbn\nGIyX56RFZUepZzEiDd1osMNW1VQRGvHJxSXd5+hIz0PW7st\/FG+b2sqSbajnsS23\nBZmAnR8FiVchnNG7BJ5zLCPHZPDRZbi2Y\/L19SXE9XnEDdf4sdzXjS1pqsMqyx6H\n18IpyOEngYu\/NrJThIqWjavFwQKBgQDRbCxFjXN0Eq3FncezAcriNp25UznzvW2m\nrd3KTAhaVacRboxt8Yz4zr1wGfBth949yu+a1pUeejBE4N\/oTJLrA6IJ0tMcwP4A\nzKzCmTy8SC61slQDNyjJQQN92xJdOBZ3VwfTZfdMn7Oab6MWxlHT\/uEhIE+omesi\n0ZMzYIe\/OQKBgGWQTGrmyOhDqw\/qHk8UO9nWIfRDRCXzWgREuNRB0DMr9p\/iOxEC\nBlKYmgj1yqCDVcsnUURXfHqnAW5t1SK8vyCof5ULbeUU6GJTTRUtbGaKyQsiBTdi\nHo5pS4C\/TsjxzdjpIupMNSuPe37T7rhPp0espLzp0+ZbPTbpBxNcM7CBAoGBAML0\n4tn07q\/125OGaKv6VTb2BSrLkb2YcQWkAj8bPQNrjVYrBcwr\/EJ7o9tCKpKs03XO\n\/\/OzI6r1sQ3OEmOdNYBXJ3fhreqst0ljQMkAAox83g8D7jX4GZ4RSgDV+miRmEiM\n2pov6GKKoZZ5que+w9qJAmfmPoIEl+MYGuLPUE\/xAoGBANqNpRekYvbSDA8V+aBW\nRHp14j1HLP85OszGf5uWTPI4eg3zhiMPFTukiEClXmdBAOVtAmljd7CtBvgw68uu\n+Kz0bESK4pXDeo\/hZK3IcqGuqTp48d5kOjJrKSafzUxIpdEWnUZW0h5wrvMSOaA0\nM7AVXGFTz4jihnc8LeavtoZ4\n-----END PRIVATE KEY-----\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/PlaudLogEncryption.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 34, + "value": "\"plaud2023_log_chacha20_key_32bit\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/PlaudLogEncryption.swift", + "kind": "Array", + "offset": 342, + "length": 36, + "value": "[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/PlaudLogEncryption.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/PlaudLogEncryption.swift", + "kind": "IntegerLiteral", + "offset": 418, + "length": 4, + "value": "1024" + } + ] +} \ No newline at end of file diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..782551d Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface new file mode 100644 index 0000000..37f0e1b --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface @@ -0,0 +1,1764 @@ +// 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-ios13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name PlaudDeviceBasicSDK +// swift-module-flags-ignorable: -no-verify-emitted-module-interface +import AVFoundation +import AVKit +import CoreTelephony.CTCellularData +import CommonCrypto +import CoreBluetooth +import CoreLocation +import CoreTelephony +import CryptoKit +import Foundation +import MediaPlayer +import MobileCoreServices +import ObjectiveC +import Photos +@_exported import PlaudBleSDK +@_exported import PlaudDeviceBasicSDK +import PlaudWiFiSDK +import Security +import Swift +import UIKit +import WebKit +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +@_hasMissingDesignatedInitializers @objc @_Concurrency.MainActor @preconcurrency public class PlaudWifiAddingPage : UIKit.UIViewController { + @_Concurrency.MainActor @preconcurrency public var completion: ((PlaudDeviceBasicSDK.PlaudWifiInfo?) -> Swift.Void)? + @_Concurrency.MainActor @preconcurrency public init(isEditing: Swift.Bool = true) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency public func setWifiInfo(name: Swift.String, password: Swift.String = "", wifiIndex: Swift.UInt32?, isConnected: Swift.Bool = false) + @objc deinit +} +public struct PlaudWifiInfo { + public init(name: Swift.String, password: Swift.String, isConnected: Swift.Bool, index: Swift.UInt32 = 0, rssi: Swift.Int32? = nil) +} +@_inheritsConvenienceInitializers @objc @_Concurrency.MainActor @preconcurrency public class PlaudWifiSettingPage : UIKit.UIViewController, PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol { + @_Concurrency.MainActor @preconcurrency public static func resetTempTestWifiIndex() + @_Concurrency.MainActor @preconcurrency @objc public func bleAppKeyState(result _: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncUrl(url: Swift.String) + @_Concurrency.MainActor @preconcurrency @objc public func blePenState(state _: Swift.Int, privacy _: Swift.Int, keyState _: Swift.Int, uDisk _: Swift.Int, findMyToken _: Swift.Int, hasSndpKey _: Swift.Int, deviceAccessToken _: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func bleConnectState(state: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncEnabled(_ value: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncListReceived(list: [Swift.UInt32]) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncConfigReceived(index: Swift.UInt32, ssid: Swift.String, password: Swift.String) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncConfigSet(result: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncDeleteResult(result _: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncTestResult(index: Swift.UInt32, result: Swift.Int, rawCode _: Swift.Int) + @_Concurrency.MainActor @preconcurrency public func getWifiTestTips(result: Swift.Int) -> Swift.String + @_Concurrency.MainActor @preconcurrency @objc public func onWifiRssiRequestConfirmed(status: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change _: [Foundation.NSKeyValueChangeKey : Any]?, context _: Swift.UnsafeMutableRawPointer?) + @objc deinit + @_Concurrency.MainActor @preconcurrency public func updateWifiListVisibility() + @_Concurrency.MainActor @preconcurrency public static func testWifiConnection(ssid: Swift.String, password: Swift.String, wifiIndex: Swift.UInt32?, edit: Swift.Bool, completion: @escaping (Swift.Bool, Swift.String) -> Swift.Void) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder) +} +extension PlaudDeviceBasicSDK.PlaudWifiSettingPage : UIKit.UITableViewDataSource, UIKit.UITableViewDelegate { + @_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_: UIKit.UITableView, numberOfRowsInSection _: Swift.Int) -> Swift.Int + @_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_: UIKit.UITableView, heightForRowAt _: Foundation.IndexPath) -> CoreFoundation.CGFloat + @_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, cellForRowAt indexPath: Foundation.IndexPath) -> UIKit.UITableViewCell + @_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, didSelectRowAt indexPath: Foundation.IndexPath) +} +extension Swift.Array { + public mutating func appendDistinct(contentsOf newElements: S, where condition: @escaping (Element, Element) -> Swift.Bool) where Element == S.Element, S : Swift.Sequence +} +extension UIKit.UIColor { + convenience public init(hex: Swift.UInt32) +} +public enum Model : Swift.String { + case simulator, iPod1, iPod2, iPod3, iPod4, iPod5, iPod6, iPod7, iPad2, iPad3, iPad4, iPadAir, iPadAir2, iPadAir3, iPadAir4, iPadAir5, iPad5, iPad6, iPad7, iPad8, iPad9, iPadMini, iPadMini2, iPadMini3, iPadMini4, iPadMini5, iPadMini6, iPadPro9_7, iPadPro10_5, iPadPro11, iPadPro2_11, iPadPro3_11, iPadPro12_9, iPadPro2_12_9, iPadPro3_12_9, iPadPro4_12_9, iPadPro5_12_9, iPhone4, iPhone4S, iPhone5, iPhone5S, iPhone5C, iPhone6, iPhone6Plus, iPhone6S, iPhone6SPlus, iPhoneSE, iPhone7, iPhone7Plus, iPhone8, iPhone8Plus, iPhoneX, iPhoneXS, iPhoneXSMax, iPhoneXR, iPhone11, iPhone11Pro, iPhone11ProMax, iPhoneSE2, iPhone12Mini, iPhone12, iPhone12Pro, iPhone12ProMax, iPhone13Mini, iPhone13, iPhone13Pro, iPhone13ProMax, iPhoneSE3, iPhone14, iPhone14Plus, iPhone14Pro, iPhone14ProMax, AppleWatch1, AppleWatchS1, AppleWatchS2, AppleWatchS3, AppleWatchS4, AppleWatchS5, AppleWatchSE, AppleWatchS6, AppleWatchS7, AppleTV1, AppleTV2, AppleTV3, AppleTV4, AppleTV_4K, AppleTV2_4K, unrecognized + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension UIKit.UIDevice { + @_Concurrency.MainActor @preconcurrency public var type: PlaudDeviceBasicSDK.Model { + get + } + @_Concurrency.MainActor @preconcurrency public static func getOSInfo() -> Swift.String +} +extension UIKit.UIViewController { + @_Concurrency.MainActor @preconcurrency public var isCurrentVisible: Swift.Bool { + get + } + @_Concurrency.MainActor @preconcurrency public func currentIS(_ vcClass: Swift.AnyClass) -> Swift.Bool + @_Concurrency.MainActor @preconcurrency public var currentVCClass: UIKit.UIViewController? { + get + } +} +extension UIKit.UINavigationController { + @_Concurrency.MainActor @preconcurrency public func pushViewController(_ viewController: UIKit.UIViewController, animated: Swift.Bool = true, completion: (() -> Swift.Void)? = nil) +} +extension Foundation.Date { + public var minSec: Swift.Int { + get + } + public var maxSec: Swift.Int { + get + } + public var formatyyyyMMdd: Swift.String { + get + } + public var yyyyMMddValue: Swift.Int { + get + } +} +extension Dispatch.DispatchTime : Swift.ExpressibleByIntegerLiteral { + public init(integerLiteral value: Swift.Int) + public typealias IntegerLiteralType = Swift.Int +} +extension Dispatch.DispatchTime : Swift.ExpressibleByFloatLiteral { + public init(floatLiteral value: Swift.Double) + public typealias FloatLiteralType = Swift.Double +} +extension Swift.Int { + public func loopRun(task: () -> Swift.Void) +} +extension Swift.Character { + public func intValue() -> Swift.Int +} +extension CoreFoundation.CGFloat { + public static func random(lower: CoreFoundation.CGFloat = 0, upper: CoreFoundation.CGFloat = 1) -> CoreFoundation.CGFloat +} +extension Swift.String { + public var local: Swift.String { + get + } + public var image: UIKit.UIImage? { + get + } + public func simpleEncrypt() -> Swift.String +} +extension Foundation.FileManager { + public func findFiles(path: Swift.String, filterTypes: [Swift.String]) -> [Swift.String] + public func fileSize(path: Swift.String) -> Swift.Int + public func folderSize(dir: Swift.String) -> Swift.Int + public func clearFolder(dir: Swift.String) + @discardableResult + public func createIfNotExist(atPath path: Swift.String) -> Swift.Bool + public func copyFile(filePath: Swift.String, withName newName: Swift.String) -> Swift.String? + public func copy(from orginPath: Swift.String, to targetPath: Swift.String, callback: @escaping (Swift.Bool) -> Swift.Void) +} +public protocol PresentBottomVCProtocol { + var controllerHeight: CoreFoundation.CGFloat { get } +} +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class PresentBottomVC : UIKit.UIViewController, PlaudDeviceBasicSDK.PresentBottomVCProtocol { + @_Concurrency.MainActor @preconcurrency public var controllerHeight: CoreFoundation.CGFloat { + get + } + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidDisappear(_ animated: Swift.Bool) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +public let PresentBottomHideKey: Swift.String +extension UIKit.UIViewController : UIKit.UIViewControllerTransitioningDelegate { + @_Concurrency.MainActor @preconcurrency public func presentBottom(_ vc: PlaudDeviceBasicSDK.PresentBottomVC) + @_Concurrency.MainActor @preconcurrency @objc dynamic public func presentationController(forPresented presented: UIKit.UIViewController, presenting: UIKit.UIViewController?, source: UIKit.UIViewController) -> UIKit.UIPresentationController? +} +public protocol WaveProtocol : ObjectiveC.NSObjectProtocol { + func onTimeChange(millisec: Swift.Int, end: Swift.Bool) +} +public protocol JXWaveformProtocol : ObjectiveC.NSObjectProtocol { + func onPlayOrPauseClick() + func onTimeChange(millisec: Swift.Int, end: Swift.Bool) + func onInfoClick() + func onShareClick() + func onStopRecordClick() +} +public enum SoundCategory { + case ambient + case soloAmbient + case playback + case record + case playAndRecord + public static func == (a: PlaudDeviceBasicSDK.SoundCategory, b: PlaudDeviceBasicSDK.SoundCategory) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +open class Sound { + public static var playersPerSound: Swift.Int { + get + set + } + public static var session: any PlaudDeviceBasicSDK.Session + public static var category: PlaudDeviceBasicSDK.SoundCategory { + get + set + } + public static var enabled: Swift.Bool { + get + set + } + public static var playerClass: any PlaudDeviceBasicSDK.Player.Type + public static var soundsBundle: Foundation.Bundle + public init?(url: Foundation.URL) + @objc deinit + @discardableResult + public func play(numberOfLoops: Swift.Int = 0, completion: PlaudDeviceBasicSDK.PlayerCompletion? = nil) -> Swift.Bool + public func stop() + public func pause() + @discardableResult + public func resume() -> Swift.Bool + public var playing: Swift.Bool { + get + } + public var paused: Swift.Bool { + get + } + @discardableResult + public func prepare() -> Swift.Bool + @discardableResult + public static func play(file: Swift.String, fileExtension: Swift.String? = nil, numberOfLoops: Swift.Int = 0) -> Swift.Bool + @discardableResult + public static func play(url: Foundation.URL, numberOfLoops: Swift.Int = 0) -> Swift.Bool + public static func stop(for url: Foundation.URL) + public var duration: Foundation.TimeInterval { + get + } + public var volume: Swift.Float { + get + set + } + public static func stop(file: Swift.String, fileExtension: Swift.String? = nil) + public static func stopAll() +} +public protocol Player : AnyObject { + func play(numberOfLoops: Swift.Int, completion: PlaudDeviceBasicSDK.PlayerCompletion?) -> Swift.Bool + func stop() + func pause() + func resume() + func prepareToPlay() -> Swift.Bool + init(contentsOf url: Foundation.URL) throws + var duration: Foundation.TimeInterval { get } + var volume: Swift.Float { get set } + var isPlaying: Swift.Bool { get } +} +public typealias PlayerCompletion = (Swift.Bool) -> Swift.Void +extension AVFAudio.AVAudioPlayer : PlaudDeviceBasicSDK.Player, AVFAudio.AVAudioPlayerDelegate { + public func play(numberOfLoops: Swift.Int, completion: PlaudDeviceBasicSDK.PlayerCompletion?) -> Swift.Bool + public func resume() + @objc dynamic public func audioPlayerDidFinishPlaying(_: AVFAudio.AVAudioPlayer, successfully flag: Swift.Bool) + @objc dynamic public func audioPlayerDecodeErrorDidOccur(_: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) +} +public protocol Session : AnyObject { + func setCategory(_ category: AVFAudio.AVAudioSession.Category) throws +} +extension AVFAudio.AVAudioSession : PlaudDeviceBasicSDK.Session { +} +@_hasMissingDesignatedInitializers @objc @_Concurrency.MainActor @preconcurrency public class PlaudAudioPlayerViewController : UIKit.UIViewController, AVFAudio.AVAudioPlayerDelegate { + @objc @_Concurrency.MainActor @preconcurrency public init(sessionId: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewWillDisappear(_ animated: Swift.Bool) + @_Concurrency.MainActor @preconcurrency @objc public func audioPlayerDidFinishPlaying(_: AVFAudio.AVAudioPlayer, successfully flag: Swift.Bool) + @_Concurrency.MainActor @preconcurrency @objc public func audioPlayerDecodeErrorDidOccur(_: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) + @_Concurrency.MainActor @preconcurrency @objc public func audioPlayerBeginInterruption(_: AVFAudio.AVAudioPlayer) + @_Concurrency.MainActor @preconcurrency @objc public func audioPlayerEndInterruption(_: AVFAudio.AVAudioPlayer, withOptions _: Swift.Int) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class PlaudPCMPlayer : ObjectiveC.NSObject { + @objc public var isPlaying: Swift.Bool { + get + } + @objc public var isPaused: Swift.Bool { + get + } + @objc public var duration: Swift.Double { + get + } + @objc public var currentTime: Swift.Double { + get + } + @objc public var onPlaybackFinished: (() -> Swift.Void)? + @objc public var onError: ((Swift.String) -> Swift.Void)? + @objc override dynamic public init() + @objc deinit + @objc public func loadFile(path: Swift.String) -> Swift.Bool + @objc public func play() + @objc public func pause() + @objc public func stop() +} +public struct AnyCodable : Swift.Codable { + public let value: Any + public init(_ value: Any) + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +@_hasMissingDesignatedInitializers public class PlaudDomainManager { + public enum Region : Swift.String, Swift.CaseIterable { + case cn + case us + case jp + public init?(rawValue: Swift.String) + public typealias AllCases = [PlaudDeviceBasicSDK.PlaudDomainManager.Region] + public typealias RawValue = Swift.String + nonisolated public static var allCases: [PlaudDeviceBasicSDK.PlaudDomainManager.Region] { + get + } + public var rawValue: Swift.String { + get + } + } + public static let shared: PlaudDeviceBasicSDK.PlaudDomainManager + @objc deinit + @objc public func setCustomDomain(_ domain: Swift.String) + public func setAutoLanguageAssociation(_ enabled: Swift.Bool) + public func isAutoLanguageAssociationEnabled() -> Swift.Bool + public func setRegion(_ region: PlaudDeviceBasicSDK.PlaudDomainManager.Region) + public func setRegionForLanguage(_ languageCode: Swift.String) + public func getCurrentRegion() -> PlaudDeviceBasicSDK.PlaudDomainManager.Region + public func getCurrentDomain() -> Swift.String + public func getCurrentBaseURL() -> Swift.String + public func getDomain(for region: PlaudDeviceBasicSDK.PlaudDomainManager.Region) -> Swift.String + public func getBaseURL(for region: PlaudDeviceBasicSDK.PlaudDomainManager.Region) -> Swift.String + public func buildAPIURL(path: Swift.String) -> Swift.String + public func buildAPIURL(path: Swift.String, for region: PlaudDeviceBasicSDK.PlaudDomainManager.Region) -> Swift.String + public func buildAPIURL(path: Swift.String, for languageCode: Swift.String) -> Swift.String + public func getRegionForCurrentLanguage() -> PlaudDeviceBasicSDK.PlaudDomainManager.Region + public func getCurrentLanguageCode() -> Swift.String +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudFileUploader : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudFileUploader + @objc public var device: PlaudBleSDK.BleDevice? + public func checkRecordingExist(sessionId: Swift.Int) -> Swift.Bool + public func getDownloadedRecordingPath(sessionId: Swift.Int, desiredPath: Swift.String) -> Swift.String + @objc public func uploadRecording(sn: Swift.String, sessionId: Swift.Int, duration: Swift.Double, onProgress: @escaping (Swift.Double) -> Swift.Void, onSuccess: @escaping ([Swift.String : Any]) -> Swift.Void, onFailure: @escaping (any Swift.Error) -> Swift.Void) + @objc public func uploadLogFile(filePath: Swift.String, sn: Swift.String, onProgress: @escaping (Swift.Double) -> Swift.Void, onSuccess: @escaping ([Swift.String : Any]) -> Swift.Void, onFailure: @escaping (any Swift.Error) -> Swift.Void) + @objc public static func calculateSnType(sn: Swift.String) -> Swift.String + public func bindDevice(ownerId: Swift.String, sn: Swift.String, completion: @escaping (Swift.Result<[Swift.String : Any], any Swift.Error>) -> Swift.Void) + public func unbindDevice(ownerId: Swift.String, sn: Swift.String, completion: @escaping (Swift.Result<[Swift.String : Any], any Swift.Error>) -> Swift.Void) + @objc deinit +} +@_hasMissingDesignatedInitializers public class PlaudLocalizationManager { + public static let shared: PlaudDeviceBasicSDK.PlaudLocalizationManager + public func setCustomBundlePath(_ path: Swift.String) + public func setLanguage(_ language: Swift.String) + public func getCurrentLanguage() -> Swift.String + public func checkSDKBundle() -> Swift.Bool + public func localizedString(for key: Swift.String) -> Swift.String + @objc deinit +} +extension Swift.String { + public var plaudLocalized: Swift.String { + get + } +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudLogUploadManager : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudLogUploadManager + @objc deinit + @objc public func setAutoUploadEnabled(_ enabled: Swift.Bool) + @objc public func startAutoUpload() + @objc public func stopAutoUpload() + @objc public func uploadLogFiles(onProgress: @escaping (Swift.Double) -> Swift.Void, onSuccess: @escaping ([Swift.String : Any]) -> Swift.Void, onFailure: @escaping (any Swift.Error) -> Swift.Void) + @objc public func cleanupLogFiles() + @objc public func getUploadStatistics() -> [Swift.String : Any] + @objc public func uploadLogFilesWithDeviceSN(sn: Swift.String, onProgress: @escaping (Swift.Double) -> Swift.Void, onSuccess: @escaping ([Swift.String : Any]) -> Swift.Void, onFailure: @escaping (any Swift.Error) -> Swift.Void) + @objc public func uploadLogsAfterRecording(sn: Swift.String, sessionId: Swift.Int, onCompletion: @escaping (Swift.Bool, (any Swift.Error)?) -> Swift.Void) +} +@objc public enum PlaudLogUploadError : Swift.Int, Swift.Error { + case alreadyUploading = 0 + case directoryNotFound = 1 + case partialUpload = 2 + public var localizedDescription: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public static var _nsErrorDomain: Swift.String { + get + } + public var rawValue: Swift.Int { + get + } +} +public struct PlaudLogUploadPartialError : Swift.Error { + public let result: [Swift.String : Any] + public init(result: [Swift.String : Any]) + public var localizedDescription: Swift.String { + get + } +} +public struct PlaudPartnerSnSignRequest : Swift.Codable { + public let type: Swift.String + public let sn: Swift.String + public init(type: Swift.String, sn: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct PlaudPartnerSnSignResponse : Swift.Codable { + public let signature: Swift.String? + public init(signature: Swift.String?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct PlaudPartnerGenKeyResponse : Swift.Codable { + public let publicKey: Swift.String? + public let privateKey: Swift.String? + public init(publicKey: Swift.String?, privateKey: Swift.String?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct PlaudPartnerApiErrorResponse : Swift.Codable { + public let detail: Swift.String? + public init(detail: Swift.String?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum PlaudPartnerApiError : Swift.Error, Foundation.LocalizedError { + case invalidParameter(Swift.String) + case noUserAccessToken + case invalidURL(Swift.String) + case invalidResponse + case unauthorized(detail: Swift.String?) + case serverError(code: Swift.Int, body: Swift.String?) + case requestEncodeFailed(any Swift.Error) + case responseDecodeFailed(any Swift.Error) + case networkError(any Swift.Error) + public var errorDescription: Swift.String? { + get + } +} +@_hasMissingDesignatedInitializers final public class PlaudPartnerApiManager { + public static let shared: PlaudDeviceBasicSDK.PlaudPartnerApiManager + final public func setUserAccessToken(_ token: Swift.String?) + final public func getUserAccessToken() -> Swift.String? + final public func signDeviceSn(deviceType: Swift.String, sn: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) + final public func generateRsaKeyPair(completion: @escaping (Swift.Result) -> Swift.Void) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class PlaudSDKLogger : ObjectiveC.NSObject { + @objc public static func logEvent(_ eventName: Swift.String, parameters: Foundation.NSDictionary? = nil) + @objc override dynamic public init() + @objc deinit +} +public enum WorkflowStatus : Swift.String, Swift.Codable { + case pending + case running + case progress + case success + case failure + case cancelled + case timeout + public var localizedDescription: Swift.String { + get + } + public var isFinished: Swift.Bool { + get + } + public var isSuccess: Swift.Bool { + get + } + public init(from decoder: any Swift.Decoder) throws + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum WorkflowTaskType : Swift.String, Swift.Codable, Swift.CaseIterable { + case audioTranscribe + case aiSummarize + case aiEtl + case audioMerge + case custom + case unknown + public var localizedDescription: Swift.String { + get + } + public init?(rawValue: Swift.String) + public typealias AllCases = [PlaudDeviceBasicSDK.WorkflowTaskType] + public typealias RawValue = Swift.String + nonisolated public static var allCases: [PlaudDeviceBasicSDK.WorkflowTaskType] { + get + } + public var rawValue: Swift.String { + get + } +} +public struct WorkflowTaskParams : Swift.Codable { + public let parameters: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public init(parameters: [Swift.String : Any]? = nil) + public init(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, extras: [Swift.String : Any] = [:]) + public init(etlType: Swift.String, extras: [Swift.String : Any] = [:]) + public init(fileIdList: [Swift.String], groupId: Swift.String) + public init(summaryType: Swift.String, extras: [Swift.String : Any] = [:]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct WorkflowTask : Swift.Codable { + public let taskType: PlaudDeviceBasicSDK.WorkflowTaskType + public let taskParams: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public init(taskType: PlaudDeviceBasicSDK.WorkflowTaskType, parameters: [Swift.String : Any]? = nil) + public init(taskType: PlaudDeviceBasicSDK.WorkflowTaskType, taskParams: PlaudDeviceBasicSDK.WorkflowTaskParams) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct WorkflowMetadata : Swift.Codable { + public let organizationId: Swift.String? + public let ownerId: Swift.String? + public let deviceSn: Swift.String? + public let customData: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public init(organizationId: Swift.String? = nil, ownerId: Swift.String? = nil, deviceSn: Swift.String? = nil, customData: [Swift.String : Any]? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct WorkflowSubmitRequest : Swift.Codable { + public let workflows: [PlaudDeviceBasicSDK.WorkflowTask] + public let metadata: PlaudDeviceBasicSDK.WorkflowMetadata + public let version: Swift.String + public init(workflows: [PlaudDeviceBasicSDK.WorkflowTask], metadata: PlaudDeviceBasicSDK.WorkflowMetadata = WorkflowMetadata(), version: Swift.String = "1.0") + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct WorkflowSubmitResponse : Swift.Codable { + public let id: Swift.String + public let status: PlaudDeviceBasicSDK.WorkflowStatus + public var endTime: Swift.String? + public let updateTime: Swift.String? + public let fileId: Swift.String? + public let startTime: Swift.Int64? + public let version: Swift.String? + public let ownerId: Swift.String? + public let metadataJson: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let totalTasks: Swift.Int? + public let completedTasks: Swift.Int? + public let config: [PlaudDeviceBasicSDK.WorkflowTask]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct PartialWorkflowStatusResponse : Swift.Codable { + public let id: Swift.String? + public let status: Swift.String? + public let endTime: Swift.String? + public let updateTime: Swift.String? + public let fileId: Swift.String? + public let startTime: Swift.Int64? + public let version: Swift.String? + public let ownerId: Swift.String? + public let metadataJson: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let completedTasks: Swift.Int? + public let totalTasks: Swift.Int? + public let progress: Swift.Double? + public let message: Swift.String? + public let estimatedCompletionTime: Swift.String? + public let taskStatuses: [Swift.String : Swift.String]? + public let config: [PlaudDeviceBasicSDK.AnyCodable]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct WorkflowStatusResponse : Swift.Codable { + public let id: Swift.String + public let status: PlaudDeviceBasicSDK.WorkflowStatus + public let endTime: Swift.String? + public let updateTime: Swift.String? + public let fileId: Swift.String? + public let startTime: Swift.Int64? + public let version: Swift.String? + public let ownerId: Swift.String? + public let metadataJson: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let completedTasks: Swift.Int? + public let totalTasks: Swift.Int? + public let progress: Swift.Double? + public let message: Swift.String? + public let estimatedCompletionTime: Swift.String? + public let taskStatuses: [Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]? + public let config: [PlaudDeviceBasicSDK.WorkflowTask]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct TranscriptSegment : Swift.Codable { + public let start: Swift.Double + public let end: Swift.Double + public let speaker: Swift.String + public let text: Swift.String + public let index: Swift.Int? + public init(start: Swift.Double, end: Swift.Double, speaker: Swift.String, text: Swift.String, index: Swift.Int? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct TranscriptResult : Swift.Codable { + public let segments: [PlaudDeviceBasicSDK.TranscriptSegment] + public let embeddings: [Swift.String : [Swift.Double]]? + public let status: Swift.Int? + public init(segments: [PlaudDeviceBasicSDK.TranscriptSegment], embeddings: [Swift.String : [Swift.Double]]? = nil, status: Swift.Int? = nil) + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public var allSpeakers: [Swift.String] { + get + } + public var totalDuration: Foundation.TimeInterval { + get + } + public var textBySpeaker: [Swift.String : Swift.String] { + get + } + public var allText: Swift.String { + get + } + public var hasEmbeddings: Swift.Bool { + get + } + public func getEmbeddings(for speaker: Swift.String) -> [Swift.Double]? +} +public struct CommunicationFeedback : Swift.Codable { + public let highlight: Swift.String? + public let suggestion: Swift.String? + public init(highlight: Swift.String? = nil, suggestion: Swift.String? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct DealIntention : Swift.Codable { + public let description: Swift.String? + public let rating: Swift.String? + public init(description: Swift.String? = nil, rating: Swift.String? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct DealReason : Swift.Codable { + public let description: Swift.String? + public let reason: [Swift.String]? + public init(description: Swift.String? = nil, reason: [Swift.String]? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct NoDealReason : Swift.Codable { + public let description: Swift.String? + public let suggestion: Swift.String? + public let reason: [Swift.String]? + public init(description: Swift.String? = nil, suggestion: Swift.String? = nil, reason: [Swift.String]? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct DealAnalysis : Swift.Codable { + public let status: Swift.String? + public let intention: PlaudDeviceBasicSDK.DealIntention? + public let dealReason: PlaudDeviceBasicSDK.DealReason? + public let noDealReason: PlaudDeviceBasicSDK.NoDealReason? + public init(status: Swift.String? = nil, intention: PlaudDeviceBasicSDK.DealIntention? = nil, dealReason: PlaudDeviceBasicSDK.DealReason? = nil, noDealReason: PlaudDeviceBasicSDK.NoDealReason? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AIEtlResult : Swift.Codable { + public let assessmentTreatmentPairs: [PlaudDeviceBasicSDK.AnyCodable]? + public let appellation: Swift.String? + public let communicationFeedback: PlaudDeviceBasicSDK.CommunicationFeedback? + public let clinicalReport: Swift.String? + public let mapped: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let transcription: PlaudDeviceBasicSDK.TranscriptResult? + public let summary: Swift.String? + public let customerProjects: [PlaudDeviceBasicSDK.AnyCodable]? + public let unmapped: [PlaudDeviceBasicSDK.AnyCodable]? + public let dealAnalysis: PlaudDeviceBasicSDK.DealAnalysis? + public let doctorProjects: [PlaudDeviceBasicSDK.AnyCodable]? + public let content: Swift.String? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct AISummaryResult : Swift.Codable { + public let summary: Swift.String? + public let keyPoints: [Swift.String]? + public let actionItems: [Swift.String]? + public let participants: [Swift.String]? + public let duration: Swift.String? + public let template: Swift.String? + public let model: Swift.String? + public let content: Swift.String? + public let status: Swift.String? + public let result: PlaudDeviceBasicSDK.AISummaryInnerResult? + public let text: Swift.String? + public init(from decoder: any Swift.Decoder) throws + public init(summary: Swift.String?, keyPoints: [Swift.String]?, actionItems: [Swift.String]?, participants: [Swift.String]?, duration: Swift.String?, template: Swift.String?, model: Swift.String?, content: Swift.String?, status: Swift.String?, result: PlaudDeviceBasicSDK.AISummaryInnerResult?, text: Swift.String?) + public var extractedSummary: Swift.String? { + get + } + public var extractedKeyPoints: [Swift.String]? { + get + } + public var extractedActionItems: [Swift.String]? { + get + } + public var extractedParticipants: [Swift.String]? { + get + } + public var extractedModel: Swift.String? { + get + } + public var extractedLanguage: Swift.String? { + get + } + public var extractedMarkdown: Swift.String? { + get + } + public func encode(to encoder: any Swift.Encoder) throws +} +public struct AISummaryInnerResult : Swift.Codable { + public let status: Swift.String? + public let result: PlaudDeviceBasicSDK.AISummaryDetailedResult? + public let text: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryDetailedResult : Swift.Codable { + public let summaryId: Swift.String? + public let selectPromptType: Swift.String? + public let speakerMapping: [Swift.String]? + public let usePersona: Swift.Bool? + public let version: Swift.String? + public let tokensLens: Swift.Int? + public let retryCount: Swift.Int? + public let header: PlaudDeviceBasicSDK.AISummaryHeader? + public let summary: Swift.String? + public let aiSuggestion: Swift.String? + public let language: Swift.String? + public let markdown: Swift.String? + public let form: PlaudDeviceBasicSDK.AISummaryForm? + public let endpoint: Swift.String? + public let contents: [PlaudDeviceBasicSDK.AISummaryContent]? + public let model: Swift.String? + public let textLens: Swift.Int? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryHeader : Swift.Codable { + public let category: Swift.String? + public let industryCategory: Swift.String? + public let languageCode: Swift.String? + public let keywords: [Swift.String]? + public let recommendQuestions: [PlaudDeviceBasicSDK.AISummaryQuestion]? + public let summaryType: Swift.String? + public let originalCategory: Swift.String? + public let summaryId: Swift.String? + public let headline: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryQuestion : Swift.Codable { + public let question: Swift.String? + public let category: Swift.String? + public let mainPurpose: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryForm : Swift.Codable { + public let arrangements: Swift.String? + public let info: Swift.String? + public let location: Swift.String? + public let aiSuggestions: Swift.String? + public let insertMore: Swift.String? + public let notes: Swift.String? + public let conclusion: Swift.String? + public let dateTime: Swift.String? + public let attendees: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryContent : Swift.Codable { + public let speakerNameMapping: [Swift.String]? + public let arrangements: [Swift.String]? + public let topics: [PlaudDeviceBasicSDK.AISummaryTopic]? + public let theme: Swift.String? + public let aiSuggestion: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryTopic : Swift.Codable { + public let topic: Swift.String? + public let conclusion: Swift.String? + public let description: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct PartialWorkflowResultResponse : Swift.Codable { + public let id: Swift.String? + public let status: Swift.String? + public let metadata: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let results: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let taskResults: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let completedAt: Swift.String? + public let duration: Swift.Double? + public let message: Swift.String? + public let progress: Swift.Double? + public let estimatedCompletionTime: Swift.String? + public let taskStatuses: [Swift.String : Swift.String]? + public let tasks: [PlaudDeviceBasicSDK.AnyCodable]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public enum WorkflowResult { + case success(T) + case failure(any Swift.Error) +} +public enum WorkflowError : Swift.Error, Foundation.LocalizedError { + case invalidURL + case networkError(any Swift.Error) + case invalidResponse + case serverError(Swift.String) + case workflowNotFound + case workflowFailed(Swift.String) + case timeout + case noApiToken + case urlBuildFailed(Swift.String) + public var errorDescription: Swift.String? { + get + } +} +@_hasMissingDesignatedInitializers public class PlaudWorkflowManager { + public static let shared: PlaudDeviceBasicSDK.PlaudWorkflowManager + public func submitWorkflow(_ request: PlaudDeviceBasicSDK.WorkflowSubmitRequest, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func getWorkflowStatus(_ workflowId: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func getWorkflowResults(_ workflowId: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func submitAndWaitForCompletion(_ request: PlaudDeviceBasicSDK.WorkflowSubmitRequest, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func pollWorkflowStatus(workflowId: Swift.String, timeout: Foundation.TimeInterval, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + @objc deinit +} +extension PlaudDeviceBasicSDK.PlaudWorkflowManager { + public func createAudioTranscribeWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func createAIEtlWorkflow(etlType: Swift.String, extras: [Swift.String : Any] = [:], completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func createAudioMergeWorkflow(fileIdList: [Swift.String], groupId: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func createTranscribeAndAnalysisWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, etlType: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func createMergeAndAnalysisWorkflow(fileIdList: [Swift.String], groupId: Swift.String, etlType: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doAudioTranscribeWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doTranscribeAndAnalysisWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, etlType: Swift.String, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doTranscribeAndAISummaryWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, templateId: Swift.String = "MEETING", prompt: Swift.String? = nil, model: Swift.String = "openai", startTime: Swift.Int = 0, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doAudioMergeWorkflow(fileIdList: [Swift.String], groupId: Swift.String, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doMergeAndAnalysisWorkflow(fileIdList: [Swift.String], groupId: Swift.String, etlType: Swift.String, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) +} +@_hasMissingDesignatedInitializers public class PlaudWorkflowManagerTest { + public static func runCompleteWorkflowTest() + public static func testAudioTranscribeWorkflow(fileId: Swift.String) + public static func testAIEtlWorkflow() + public static func testTranscribeAndAnalysisWorkflow(fileId: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) + public static func testAudioMergeWorkflow(fileIdList: [Swift.String]) + public static func testMergeAndAnalysisWorkflow(fileId: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) + public static func testCustomWorkflow() + public static func testJSONParsingFix() + public static func testDoAudioTranscribeWorkflow(fileId: Swift.String) + public static func testURLBuilding() + public static func testWorkflowStatusResponseParsing() + public static func testNewWorkflowResultResponseParsing() + public static func testWorkflowResultResponseWithAIEtl() + public static func testTranscribeAndAISummaryWorkflow() + public static func testWorkflowResultResponseWithComplexAISummary() + public static func pollWorkflowCompletion(workflowId _: Swift.String, description: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void = { _ in }) + @objc deinit +} +@_hasMissingDesignatedInitializers public class PlaudWorkflowManagerExample { + public static func runAllExamples() + public static func simpleTranscribeExample() + public static func batchProcessingExample() + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class TestAgent : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.TestAgent + @objc public func testFunc() -> Swift.String + @objc deinit +} +public struct WorkflowResultResponse : Swift.Codable { + public let id: Swift.String + public let status: Swift.String + public let ownerId: Swift.String? + public let metadataJson: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let fileId: Swift.String? + public let tasks: [PlaudDeviceBasicSDK.WorkflowTaskResult] + public let metadata: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let results: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let taskResults: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let completedAt: Swift.String? + public let duration: Swift.Double? + public let message: Swift.String? + public let progress: Swift.Double? + public let estimatedCompletionTime: Swift.String? + public let taskStatuses: [Swift.String : Swift.String]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public var legacyResults: [Swift.String : Any]? { + get + } + public var legacyTaskResults: [Swift.String : Any]? { + get + } + public var legacyCompletedAt: Swift.String? { + get + } + public var legacyDuration: Foundation.TimeInterval? { + get + } + public var legacyProgress: Swift.Double? { + get + } + public var legacyMessage: Swift.String? { + get + } + public var legacyEstimatedCompletionTime: Swift.String? { + get + } + public var legacyTaskStatuses: [Swift.String : Swift.String]? { + get + } + public var firstTranscriptResult: PlaudDeviceBasicSDK.TranscriptResult? { + get + } + public var firstAIEtlResult: PlaudDeviceBasicSDK.AIEtlResult? { + get + } + public var firstAISummaryResult: PlaudDeviceBasicSDK.AISummaryResult? { + get + } + public var allTranscriptText: Swift.String { + get + } + public var transcriptBySpeaker: [Swift.String : Swift.String] { + get + } + public var transcriptTask: PlaudDeviceBasicSDK.WorkflowTaskResult? { + get + } + public var aiEtlTask: PlaudDeviceBasicSDK.WorkflowTaskResult? { + get + } + public var aiSummaryTask: PlaudDeviceBasicSDK.WorkflowTaskResult? { + get + } + public var transcriptDuration: Swift.Int64? { + get + } + public var aiEtlDuration: Swift.Int64? { + get + } + public var aiSummaryDurationSeconds: Swift.Double? { + get + } + public var transcriptDurationSeconds: Swift.Double? { + get + } + public var aiEtlDurationSeconds: Swift.Double? { + get + } + public var isSuccess: Swift.Bool { + get + } + public var segmentCount: Swift.Int { + get + } + public var allSpeakers: [Swift.String] { + get + } + public var speakers: [Swift.String] { + get + } + public var transcriptTotalDuration: Foundation.TimeInterval { + get + } + public var aiEtlSummary: Swift.String? { + get + } + public var aiSummaryText: Swift.String? { + get + } + public var aiSummaryKeyPoints: [Swift.String]? { + get + } + public var aiSummaryActionItems: [Swift.String]? { + get + } + public var aiSummaryParticipants: [Swift.String]? { + get + } + public var aiSummaryTemplate: Swift.String? { + get + } + public var aiSummaryModel: Swift.String? { + get + } + public var aiSummaryDuration: Swift.String? { + get + } + public var aiSummaryHeadline: Swift.String? { + get + } + public var aiSummaryTopics: [PlaudDeviceBasicSDK.AISummaryTopic]? { + get + } + public var clinicalReport: Swift.String? { + get + } + public var dealStatus: Swift.String? { + get + } + public var dealIntentionRating: Swift.String? { + get + } + public var communicationHighlight: Swift.String? { + get + } + public var communicationSuggestion: Swift.String? { + get + } + public var customerAppellation: Swift.String? { + get + } + public var hasAIEtlTask: Swift.Bool { + get + } + public var hasAISummaryTask: Swift.Bool { + get + } + public var hasTranscriptTask: Swift.Bool { + get + } + public var taskTypes: [Swift.String] { + get + } + public var embeddingsData: [Swift.String : [Swift.Double]]? { + get + } + public var hasEmbeddings: Swift.Bool { + get + } + public var transcriptStatusCode: Swift.Int? { + get + } +} +public struct WorkflowTaskResult : Swift.Codable { + public let taskId: Swift.String + public let taskType: Swift.String + public let status: Swift.String + public let startTime: Swift.Int64? + public let endTime: Swift.Int64? + public let result: PlaudDeviceBasicSDK.AnyCodable? + public init(taskId: Swift.String, taskType: Swift.String, status: Swift.String, startTime: Swift.Int64?, endTime: Swift.Int64?, result: PlaudDeviceBasicSDK.AnyCodable?) + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public func debugPrintTaskResult() + public var transcriptResult: PlaudDeviceBasicSDK.TranscriptResult? { + get + } + public var aiEtlResult: PlaudDeviceBasicSDK.AIEtlResult? { + get + } + public var aiSummaryResult: PlaudDeviceBasicSDK.AISummaryResult? { + get + } +} +public enum WorkflowParsingError : Swift.Error, Foundation.LocalizedError { + case missingRequiredField(Swift.String) + case invalidDataStructure(Swift.String) + case unsupportedFormat(Swift.String) + public var errorDescription: Swift.String? { + get + } +} +@_inheritsConvenienceInitializers @objc public class AudioFileDecryptor : ObjectiveC.NSObject { + @objc public static func decryptAudioFile(inputPath: Swift.String, privateKeyPem: Swift.String, outputPath: Swift.String? = nil) throws -> Swift.String + public static func decryptAudioToOgg(inputPath: Swift.String, privateKeyPem: Swift.String, outputPath: Swift.String? = nil) throws -> Swift.String? + @objc public static func isFileEncrypted(path: Swift.String) -> Swift.Bool + @objc public static func getHeader(path: Swift.String) -> PlaudDeviceBasicSDK.PlaudEncryptHeader? + @objc override dynamic public init() + @objc deinit +} +@objc public enum AudioDecryptorError : Swift.Int, Swift.Error { + case invalidHeader = 1 + case invalidSymmetricKey = 2 + case noEncryptedData = 3 + case decryptionFailed = 4 + public var localizedDescription: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public static var _nsErrorDomain: Swift.String { + get + } + public var rawValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class ChaCha20 { + public static func decrypt(data: Foundation.Data, key: Foundation.Data, nonce: Foundation.Data, counter: Swift.UInt32 = 0) throws -> Foundation.Data + @objc deinit +} +public enum ChaCha20Error : Swift.Error { + case invalidKeyLength + case invalidNonceLength + public static func == (a: PlaudDeviceBasicSDK.ChaCha20Error, b: PlaudDeviceBasicSDK.ChaCha20Error) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +extension PlaudDeviceBasicSDK.ChaCha20 { + public static func verifyRFC7539TestVector() -> Swift.Bool +} +@_inheritsConvenienceInitializers @objc public class OggOpusParser : ObjectiveC.NSObject { + @objc public static func resetDecoder() + @objc public var parsedSampleRate: Swift.Int { + @objc get + } + @objc public var parsedChannels: Swift.Int { + @objc get + } + @objc public var parsedPreSkip: Swift.Int { + @objc get + } + @objc public func parse(_ oggData: Foundation.Data) -> [Foundation.Data] + @objc override dynamic public init() + @objc deinit +} +@objc public enum PlaudDownloadFormat : Swift.Int { + case pcm = 0 + @available(*, unavailable, message: "MP3 format is not supported") + case mp3 = 1 + case wav = 2 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objc public enum AudioExportFormat : Swift.Int { + case pcm = 0 + case mp3 = 1 + case wav = 2 + case opus = 3 + public var fileExtension: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objc public protocol AudioExportCallback { + @objc func onProgress(_ progress: Swift.Int, message: Swift.String) + @objc func onComplete(outputPath: Swift.String) + @objc func onError(_ error: Swift.String) +} +@_inheritsConvenienceInitializers @objc public class PlaudBleDevice : PlaudBleSDK.BleDevice { + @objc override public init(sn: Swift.String) + override public init(peripheral: CoreBluetooth.CBPeripheral, rssi: Foundation.NSNumber, manufacturerData: Foundation.Data, localName: Swift.String?) + @objc deinit +} +@objc public protocol PlaudDeviceAgentProtocol { + @objc optional func bleAppKeyState(result: 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) + @objc optional func bleDeviceName(name: Swift.String?) + @objc optional func bleScanResult(bleDevices: [PlaudBleSDK.BleDevice]) + @objc optional func bleScanOverTime() + @objc optional func bleConnectState(state: Swift.Int) + @objc optional func bleBind(sn: Swift.String?, status: Swift.Int, protVersion: Swift.Int, timezone: Swift.Int) + @objc optional func bleMicGain(_ value: Swift.Int) + @objc optional func bleStorage(total: Swift.Int, free: Swift.Int, duration: Swift.Int) + @objc optional func blePowerChange(power: Swift.Int, oldPower: Swift.Int) + @objc optional func bleChargingState(isCharging: Swift.Bool, level: Swift.Int) + @objc optional func bleFileList(bleFiles: [PlaudBleSDK.BleFile]) + @objc optional func bleRecordStart(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int, reason: Swift.Int) + @objc optional func bleRecordStop(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int) + @objc optional func bleRecordPause(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int) + @objc optional func bleRecordResume(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int) + @objc optional func bleSyncFileHead(sessionId: Swift.Int, status: Swift.Int) + @objc optional func bleSyncFileTail(sessionId: Swift.Int, crc: Swift.Int) + @objc optional func bleData(sessionId: Swift.Int, start: Swift.Int, data: Foundation.Data) + @objc optional func blePcmData(sessionId: Swift.Int, millsec: Swift.Int, pcmData: Foundation.Data, isMusic: Swift.Bool) + @objc optional func bleDataComplete() + @objc optional func bleDecodeFail(start: Swift.Int) + @objc optional func bleSyncFileStop() + @objc optional func bleDownloadFile(sessionId: Swift.Int, desiredOutputPath: Swift.String, status: Swift.Int, progress: Swift.Int, tips: Swift.String) + @objc optional func bleDownloadFileStop() + @objc optional func bleDeleteFile(sessionId: Swift.Int, status: Swift.Int) + @objc optional func bleDepair(_ status: Swift.Int) + @objc optional func onWifiSyncConfigReceived(index: Swift.UInt32, ssid: Swift.String, password: Swift.String) + @objc optional func onWifiSyncConfigSet(result: Swift.Int) + @objc optional func onWifiSyncListReceived(list: [Swift.UInt32]) + @objc optional func onWifiSyncDeleteResult(result: Swift.Int) + @objc optional func onWifiSyncTestStarted(index: Swift.UInt32) + @objc optional func onWifiSyncWillStart(seconds: Swift.Int) + @objc optional func onWifiSyncTestResult(index: Swift.UInt32, result: Swift.Int, rawCode: Swift.Int) + @objc optional func onWifiSyncUrl(url: Swift.String) + @objc optional func onWifiRssiRequestConfirmed(status: Swift.Int) + @objc optional func onSdkFetchPermissionResult(pass: Swift.Bool, tips: Swift.String) + @objc optional func onSdkCheckPermissionResult(pass: Swift.Bool, tips: Swift.String) + @objc optional func onSdkCheckResourceResult(pass: Swift.Bool, tips: Swift.String) + @objc optional func onWifiSyncEnabled(_ value: Swift.Int) + @objc optional func onCommonMsgChannel(type: Swift.Int, value: Swift.Int, tips: Swift.String) + @objc optional func bleWiFiOpen(_ status: Swift.Int, _ wifiName: Swift.String, _ wholeName: Swift.String, _ wifiPass: Swift.String) + @objc optional func bleFotaResult(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?) + @objc optional func bleFotaPackReq(uid: Swift.Int, start: Swift.Int, end: Swift.Int) + @objc optional func bleFotaPackFin(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?) + @objc optional func bleOtaDataSendFail() + @objc optional func bleSetActive(status: Swift.Int) + @objc optional func bleCommonSetting(setting: Swift.Int) + @objc optional func bleRate(lossRate: Swift.Double, rate: Swift.Int, instantRate: Swift.Int) +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudDeviceAgent : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudDeviceAgent + public var bleAgent: PlaudBleSDK.BleAgent? + @objc public var recentConnectDevice: PlaudBleSDK.BleDevice? + @objc public var sceneFlag: Swift.Int { + get + } + @objc public var isWiFiTransferActive: Swift.Bool { + get + } + @objc public var skipPermissionCheck: Swift.Bool + @objc weak public var delegate: (any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol)? { + @objc get + @objc set + } + @objc deinit + @objc public func initSDK(userAccessToken: Swift.String, customDomain: Swift.String, extra: [Swift.String : Swift.String] = [:]) + @objc public func initSDK(hostName: Swift.String, appKey: Swift.String, appSecret: Swift.String, bindToken: Swift.String = "", extra: [Swift.String : Swift.String] = [:], customDomain: Swift.String? = nil, partnerToken: Swift.String? = nil) + @objc public func setUserAccessToken(_ token: Swift.String?) + @available(*, deprecated, renamed: "setUserAccessToken") + @objc public func setPartnerToken(_ token: Swift.String?) + public func getPartnerApiManager() -> PlaudDeviceBasicSDK.PlaudPartnerApiManager + @objc public func isPartnerDataReady() -> Swift.Bool + @objc public static func getTestAppKey(_ beta: Swift.Bool = false) -> Swift.String + @objc public static func getTestAppSecret(_ beta: Swift.Bool = false) -> Swift.String + @objc public func depair(clear: Swift.Bool = false) + @objc public func setDeviceWiFi(open: Swift.Bool) + @objc public func endWiFiTransfer() + @objc public func setDeviceBinding(token: Swift.String) + @objc public func startScan() + @objc public func stopScan() + @objc public func isConnected() -> Swift.Bool + @objc public func connectBleDevice(bleDevice: PlaudBleSDK.BleDevice, deviceToken: Swift.String) + @objc public func connectBleDevice(bleDevice: PlaudBleSDK.BleDevice) + @objc public func disconnect() + @objc public func tryReconnectLastDevice() + @objc public func getState() + @objc public func getStorage() + @objc public func getWifiSyncEnable() + @objc public func setWifiSyncEnable(value: Swift.Int) + @objc public func setWifiSyncTest(wifiIndex: Swift.UInt32) + @objc public func getWifiSyncTestResult(wifiIndex: Swift.UInt32) + @objc public func getChargingState() + @objc public func setMicGain(value: Swift.Int) + @objc public func readMicGain() + @objc public func setUDiskMode(onOff: Swift.Bool) + @objc public func checkIsRecording() -> Swift.Bool + @objc public func checkIsDownloading() -> Swift.Bool + @objc public func startRecord() + @objc public func setDeviceActive(status: Swift.Int) + @objc public func stopRecord() + @objc public func setDeviceName(_ name: Swift.String) + @objc public func getCurrentSessionID() -> Swift.Int + @objc public func pauseRecord() + @objc public func resumeRecord() + @objc public func getFileList(startSessionId: Swift.Int) + @objc public func getFile(sessionId: Swift.Int) + @objc public func syncFile(sessionId: Swift.Int, start: Swift.Int, end: Swift.Int) + @objc public func downloadFile(sessionId: Swift.Int, desiredOutputPath: Swift.String, format: PlaudDeviceBasicSDK.PlaudDownloadFormat = .wav) + @objc public func stopDownloadFile() + @objc public func exportAudio(sessionId: Swift.Int, outputDir: Swift.String, format: PlaudDeviceBasicSDK.AudioExportFormat, channels: Swift.Int = 1, callback: any PlaudDeviceBasicSDK.AudioExportCallback) + public static func getSupportedExportFormats() -> [PlaudDeviceBasicSDK.AudioExportFormat] + @objc public func stopSyncFile() + @objc public func deleteFile(sessionId: Swift.Int) + @objc public func clearAllFiles() + @objc public func restoreFactory() + @objc public func getWifiSyncConfig(wifiIndex: Swift.UInt32) + @objc public func setWifiSyncConfig(operation: Swift.Int, wifiIndex: Swift.UInt32, ssid: Swift.String, password: Swift.String) + @objc public func getWifiSyncList() + @objc public func deleteWifiSyncConfig(wifiIndices: [Swift.UInt32]) +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent : PlaudBleSDK.BleAgentProtocol { + @objc dynamic public func bleScanResult(bleDevices: [PlaudBleSDK.BleDevice]) + @objc dynamic public func bleScanOverTime() + @objc dynamic public func bleAppKeyState(result: Swift.Int) + @objc dynamic public func bleConnectState(state: Swift.Int) + @objc dynamic public func bleBind(sn: Swift.String?, status: Swift.Int, protVersion: Swift.Int, timezone: Swift.Int) + @objc dynamic public 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 dynamic public func bleStorage(total: Swift.Int, free: Swift.Int, duration: Swift.Int) + @objc dynamic public func blePowerChange(power: Swift.Int, oldPower: Swift.Int) + @objc dynamic public func bleChargingState(isCharging: Swift.Bool, level: Swift.Int) + @objc dynamic public func bleFileList(bleFiles: [PlaudBleSDK.BleFile]) + @objc dynamic public func bleDataComplete() + @objc dynamic public func bleRecordStart(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int) + @objc dynamic public func bleRecordStop(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int) + @objc dynamic public func bleRecordPause(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int) + @objc dynamic public func bleRecordResume(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int) + @objc dynamic public func bleSyncFileHead(sessionId: Swift.Int, status: Swift.Int) + @objc dynamic public func bleSyncFileTail(sessionId: Swift.Int, crc: Swift.Int) + @objc dynamic public func bleData(sessionId: Swift.Int, start: Swift.Int, data: Foundation.Data) + @objc dynamic public func blePcmData(sessionId: Swift.Int, millsec: Swift.Int, pcmData: Foundation.Data, isMusic: Swift.Bool) + @objc dynamic public func bleDecodeFail(start: Swift.Int) + @objc dynamic public func bleSyncFileStop() + @objc dynamic public func bleDeleteFile(sessionId: Swift.Int, status: Swift.Int) + @objc dynamic public func bleDepair(_ status: Swift.Int) + @objc dynamic public func bleMicGain(_ value: Swift.Int) + @objc dynamic public func onSyncIdleWifiConfigReceived(index: Swift.UInt32, ssid: Swift.String, password: Swift.String) + @objc dynamic public func onSyncIdleWifiConfigSet(result: Swift.Int) + @objc dynamic public func onSyncIdleWifiListReceived(list: [Swift.UInt32]) + @objc dynamic public func onSyncIdleWifiDeleteResult(result: Swift.Int) + @objc dynamic public func onSyncIdleWifiTestStarted(index: Swift.UInt32) + @objc dynamic public func onSyncIdleWillStart(seconds: Swift.Int) + @objc dynamic public func onSyncIdleWifiTestResult(index: Swift.UInt32, result: Swift.Int, rawCode: Swift.Int) + public func onWifiRssiRequestConfirmed(status: Swift.Int) + @objc dynamic public func bleSyncWhenIdleEnabled(_ value: Swift.Int) + @objc dynamic public func bleUDiskErr(funcName: Swift.String) + @objc dynamic public func bleWiFiOpen(_ status: Swift.Int, _ wifiName: Swift.String, _ wholeName: Swift.String, _ wifiPass: Swift.String) + @objc dynamic public func bleDeviceName(name: Swift.String?) + @objc dynamic public func bleFotaResult(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?) + @objc dynamic public func bleFotaPackReq(uid: Swift.Int, start: Swift.Int, end: Swift.Int) + @objc dynamic public func bleFotaPackFin(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?) + @objc dynamic public func bleOtaDataSendFail() + @objc dynamic public func bleRate(lossRate: Swift.Double, rate: Swift.Int, instantRate: Swift.Int) + @objc dynamic public func bleSetActive(status: Swift.Int) + public func bleCommonSetting(_ setting: Swift.Int) + @objc dynamic public func bleHeartbeat(status: Swift.Int) + @objc dynamic public func bleBatteryMode(_ mode: Swift.Int) + @objc dynamic public func bleDeviceStatus(status: [Swift.UInt8]) + @objc dynamic public func bleNewFeature(data: Foundation.Data) + @objc dynamic public func bleGetRecordMarkingTags(uid: Swift.Int, totals: Swift.Int, index: Swift.Int, tags: [PlaudBleSDK.BleRecordMarkingTag]) + @objc dynamic public func deviceLogData(start: Swift.Int, data: Foundation.Data, logType: Swift.Int) + @objc dynamic public func onGetDeviceLogList(data: Foundation.Data) + @objc dynamic public func onSyncDeviceLogStart(data: Foundation.Data) + @objc dynamic public func onSyncDeviceLogStop() + @objc dynamic public func onSyncDeviceLogEnd(data: Foundation.Data) + @objc dynamic public func onDeviceLogDeleted(data: Foundation.Data) + @objc dynamic public func bleUpdatePowerLowErr() + @objc dynamic public func bleDeviceDisconnectErr() + @objc dynamic public func bleState(powered: Swift.Bool) + @objc dynamic public func bleHandshakeWait(timeout: Swift.Int) + @objc dynamic public func blePenTime(stamp: Swift.Int, timezone: Swift.Int, zoneMin: Swift.Int) + @objc dynamic public func blePasswordReset(password: Swift.Int) + @objc dynamic public func bleBacklightDuration(_ duration: Swift.Int) + @objc dynamic public func bleBacklightBright(_ bright: Swift.Int) + @objc dynamic public func bleLanguage(_ type: Swift.Int) + @objc dynamic public func bleRecScene(_ scene: Swift.Int) + @objc dynamic public func bleRecMode(_ mode: Swift.Int) + @objc dynamic public func bleVadSensitivity(_ value: Swift.Int) + @objc dynamic public func bleVpuGain(_ value: Swift.Int) + @objc dynamic public func bleSwitchHandler(_ id: Swift.Int) + @objc dynamic public func bleAutoPowerOff(_ value: Swift.Int) + @objc dynamic public func bleRawWaveEnabled(_ value: Swift.Int) + @objc dynamic public func bleRecordingAfterDisConnetEnabled(_ value: Swift.Int) + @objc dynamic public func bleFindMyState(_ value: Swift.Int) + @objc dynamic public func bleVPUCLKState(_ value: Swift.Int) + @objc dynamic public func bleStopRecordingAfterCharging(_ value: Swift.Int) + @objc dynamic public func bleAutoClear(_ open: Swift.Bool) + @objc dynamic public func bleVad(_ open: Swift.Bool) + @objc dynamic public func bleWiFiClose(_ status: Swift.Int) + @objc dynamic public func bleSetWiFiSsid(status: Swift.Int) + @objc dynamic public func bleGetWiFiSsid(status: Swift.Int, ssid: Swift.String?) + @objc dynamic public func bleVoiceAbnormal(status: Swift.Int) + @objc dynamic public func bleWebsocketProfile(_ type: Swift.Int, _ conent: Swift.String?) + @objc dynamic public func bleWebsocketTest(_ status: Swift.Int) + @objc dynamic public func bleLedState(onOff: Swift.Int) + @objc dynamic public func bleSetLedState(onOff: Swift.Int) + @objc dynamic public func bleMarking(sessionId: Swift.Int, status: Swift.Int, markList: [Swift.UInt32]) + @objc dynamic public func bleAngles(pitchAngle: Swift.Float, rollbackAngle: Swift.Float, yawAngle: Swift.Float) + @objc dynamic public func blePrivacy(privacy: Swift.Int) + @objc dynamic public func bleClearAllFile(status: Swift.Int) + @objc dynamic public func bleAlarmRec(start: Swift.Int, duration: Swift.Int, repeatMode: Swift.Int) + @objc dynamic public func onResetFindmyResult(result: Swift.Int) + @objc dynamic public func onCommonParamsSetResult(success: Swift.Bool, dataType: Swift.Int, value: Swift.String?) + @objc dynamic public func onCommonParamsGetResult(success: Swift.Bool, dataType: Swift.Int, value: Swift.String?) + @objc dynamic public func onSetSoundPlusTokenResult(licenseKey: Swift.String) + @objc dynamic public func onGetSDFlashCIDResult(cid: Swift.String) +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + @objc dynamic public func reportDeviceMetadata() + @objc dynamic public func checkFirmwareUpdate(completion: @escaping (PlaudDeviceBasicSDK.PlaudFirmwareCheckResult) -> Swift.Void) + @objc dynamic public func startFirmwareUpdate(progress: @escaping (PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float) -> Swift.Void, completion: @escaping (PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult) -> Swift.Void) + @objc dynamic public func pushFirmwareFile(filePath: Swift.String, toVersion: Swift.String, progress: @escaping (PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float) -> Swift.Void, completion: @escaping (PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult) -> Swift.Void) +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func sendApiToken(token: Swift.String, callback: @escaping (Swift.Bool, Swift.String) -> Swift.Void) + public func sendBinaryFile(type: Swift.Int, data: Foundation.Data?, callback: @escaping (Swift.Bool, Swift.String) -> Swift.Void) + @objc dynamic public func onBinaryFileReq(type: Swift.Int, packageOffset: Swift.Int, packageSize: Swift.Int, endStatus: Swift.Int) + @objc dynamic public func onBinaryFileEnd(result: Swift.Int) +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func checkDeviceState(state _: Swift.Int, privacy _: Swift.Int, keyState _: Swift.Int, uDisk _: Swift.Int, findMyToken _: Swift.Int, hasSndpKey _: Swift.Int, deviceAccessToken: Swift.Int) +} +extension PlaudBleSDK.BleAgent { + @objc dynamic public var isSecureChannelEstablished: Swift.Bool { + @objc get + } + @objc dynamic public func getEncryptionKey() -> Swift.String? + @objc dynamic public func getEncryptionNonce() -> Swift.String? + @objc dynamic public func getEncryptionAD() -> Swift.String? + @objc dynamic public func getEncryptionParameters() -> [Swift.String : Swift.String]? + @objc dynamic public func decryptFileData(_ encryptedData: Foundation.Data, key: Swift.String? = nil, nonce: Swift.String? = nil, ad: Swift.String? = nil) throws -> Foundation.Data + @objc dynamic public func decryptFile(inputPath: Swift.String, outputPath: Swift.String, key: Swift.String? = nil, nonce: Swift.String? = nil, ad: Swift.String? = nil) -> Swift.Bool + @objc dynamic public func decryptAndPrepareOggFile(encryptedFilePath: Swift.String, channel: Swift.Int32, key: Swift.String? = nil, nonce: Swift.String? = nil, ad: Swift.String? = nil) -> Swift.String? +} +@objc public enum EncryptionError : Swift.Int, Swift.Error { + case noKey = 1 + case noNonce = 2 + case noAD = 3 + case dataTooShort = 4 + case decryptionFailed = 5 + public var localizedDescription: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public static var _nsErrorDomain: Swift.String { + get + } + public var rawValue: Swift.Int { + get + } +} +extension PlaudBleSDK.BleAgent { + @objc dynamic public func playDecryptedOggFile(encryptedFilePath: Swift.String, channel: Swift.Int32 = 1, delegate: (any PlaudBleSDK.JXOggPlayerDelegate)? = nil, key: Swift.String? = nil, nonce: Swift.String? = nil, ad: Swift.String? = nil) -> Swift.Bool + @objc dynamic public func stopOggPlayback() + @objc dynamic public func pauseOggPlayback() + @objc dynamic public func resumeOggPlayback() + @objc dynamic public func getOggPlayer() -> PlaudBleSDK.JXOggPlayer +} +extension PlaudBleSDK.BleAgent { + @objc dynamic public func decryptE2EEAudioFile(inputPath: Swift.String, outputPath: Swift.String? = nil, privateKeyPem: Swift.String) throws -> Swift.String + @objc dynamic public func isE2EEEncryptedFile(path: Swift.String) -> Swift.Bool + @objc dynamic public func getE2EEFileHeader(path: Swift.String) -> PlaudDeviceBasicSDK.PlaudEncryptHeader? +} +extension PlaudBleSDK.BleAgent { + @objc dynamic public var isEncryptionSupported: Swift.Bool { + @objc get + } + @objc dynamic public func getEncryptionProtocolInfo() -> [Swift.String : Any] +} +@objc public enum PlaudFirmwarePhase : Swift.Int { + case downloading = 0 + case installing = 1 + case restarting = 2 + case complete = 3 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers @objc public class PlaudFirmwareUpdateResult : ObjectiveC.NSObject { + @objc final public let success: Swift.Bool + @objc final public let version: Swift.String + @objc final public let errorMessage: Swift.String? + @objc deinit +} +@_hasMissingDesignatedInitializers @objc public class PlaudFirmwareCheckResult : ObjectiveC.NSObject { + @objc final public let hasUpdate: Swift.Bool + @objc final public let currentVersion: Swift.String + @objc final public let latestVersion: Swift.String + @objc final public let versionCode: Swift.Int + @objc final public let releaseNotes: Swift.String + @objc final public let downloadUrl: Swift.String + @objc final public let md5: Swift.String + @objc final public let isForce: Swift.Bool + @objc deinit +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + @objc dynamic public func clearSDKCredentials() +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func quickUpdateCheck(device: PlaudBleSDK.BleDevice, showUI: Swift.Bool = true, completion: @escaping (PlaudDeviceBasicSDK.UpdateStatus) -> Swift.Void) + public func quickUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", showUI: Swift.Bool = true, completion: ((Swift.Bool, Swift.String?) -> Swift.Void)? = nil) + public func silentUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", completion: @escaping (Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?) -> Swift.Void) + public func downloadUpdatePackage(downloadURL: Swift.String, model: Swift.String, versionNumber: Swift.String, versionCode: Swift.String = "", fileMD5: Swift.String? = nil, showProgress: Swift.Bool = false, completion: @escaping (Swift.Bool, Swift.String?) -> Swift.Void) + public func checkForceUpdate(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", completion: @escaping (Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?) -> Swift.Void) + public func getDownloadedUpdatePackages() -> [Swift.String] + @discardableResult + public func cleanDownloadedUpdatePackages() -> Swift.Bool +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func compareVersions(_ version1: Swift.String, _ version2: Swift.String) -> Swift.Int + public func shouldUpdate(currentVersion: Swift.String, latestVersion: Swift.String) -> Swift.Bool + public func formatFileSize(_ bytes: Swift.Int64) -> Swift.String +} +public func PlaudQuickUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", showUI: Swift.Bool = true, completion: ((Swift.Bool, Swift.String?) -> Swift.Void)? = nil) +public func PlaudSilentUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", completion: @escaping (Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?) -> Swift.Void) +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func checkSdkResource() +} +@objc public class LatestVersionResponse : ObjectiveC.NSObject, Swift.Codable { + @objc final public let type: Swift.String + @objc final public let model: Swift.String + @objc final public let version_type: Swift.String + @objc final public let version_code: Swift.String + @objc final public let version_number: Swift.String + @objc final public let version_description: Swift.String + @objc final public let is_force: Swift.Bool + @objc final public let is_strong_guidance: Swift.Bool + @objc final public let file_md5: Swift.String? + @objc final public let download_url: Swift.String + public init(type: Swift.String, model: Swift.String, version_type: Swift.String, version_code: Swift.String, version_number: Swift.String, version_description: Swift.String, is_force: Swift.Bool, is_strong_guidance: Swift.Bool, file_md5: Swift.String?, download_url: Swift.String) + @objc public var version: Swift.String { + @objc get + } + @objc public var release_notes: Swift.String? { + @objc get + } + @objc public var force_update: Swift.Bool { + @objc get + } + @objc deinit + public func encode(to encoder: any Swift.Encoder) throws + required public init(from decoder: any Swift.Decoder) throws +} +public enum UpdateStatus { + case checking + case available(PlaudDeviceBasicSDK.LatestVersionResponse) + case notAvailable + case downloading(progress: Swift.Float) + case downloaded(localPath: Swift.String) + case failed(any Swift.Error) +} +public enum UpdateError : Swift.Error, Foundation.LocalizedError { + case networkError(Swift.String) + case invalidResponse + case downloadFailed(Swift.String) + case fileSystemError(Swift.String) + case noUpdateAvailable + case userCancelled + public var errorDescription: Swift.String? { + get + } +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public typealias UpdateStatusCallback = (PlaudDeviceBasicSDK.UpdateStatus) -> Swift.Void + public typealias UserConfirmationCallback = (Swift.Bool) -> Swift.Void + public func checkLatestVersion(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", callback: @escaping PlaudDeviceBasicSDK.PlaudDeviceAgent.UpdateStatusCallback) + @objc dynamic public func showUpdateConfirmation(versionInfo: PlaudDeviceBasicSDK.LatestVersionResponse, completion: @escaping (Swift.Bool) -> Swift.Void) + public func downloadUpdate(versionInfo: PlaudDeviceBasicSDK.LatestVersionResponse, callback: @escaping PlaudDeviceBasicSDK.PlaudDeviceAgent.UpdateStatusCallback) + public func performUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", callback: @escaping PlaudDeviceBasicSDK.PlaudDeviceAgent.UpdateStatusCallback) + @objc dynamic public func checkLatestVersionForModel(_ model: Swift.String, snType: Swift.String, versionType: Swift.String, hasUpdate: @escaping (Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?) -> Swift.Void, failure: @escaping (Swift.String) -> Swift.Void) + @objc dynamic public func downloadUpdateForVersion(_ versionInfo: PlaudDeviceBasicSDK.LatestVersionResponse, progress: @escaping (Swift.Float) -> Swift.Void, success: @escaping (Swift.String) -> Swift.Void, failure: @escaping (Swift.String) -> Swift.Void) +} +@objc public class PlaudEncryptHeader : ObjectiveC.NSObject { + @objc public static let headerSize: Swift.Int + @objc public static let magicString: Swift.String + @objc final public let magic: Foundation.Data + @objc final public let version: Swift.UInt16 + @objc final public let headerSizeValue: Swift.UInt16 + @objc final public let crc: Swift.UInt32 + @objc final public let userId: Foundation.Data + @objc final public let fileType: Swift.UInt16 + @objc final public let channel: Swift.UInt16 + @objc final public let encryptType: Swift.UInt16 + @objc final public let duration: Swift.UInt32 + @objc final public let reserved: Foundation.Data + @objc final public let counter: Swift.UInt32 + @objc final public let nonce: Foundation.Data + @objc final public let segment: Swift.UInt32 + @objc final public let algParams: Foundation.Data + @objc final public let keyCipher: Foundation.Data + @objc public init?(data: Foundation.Data) + @objc public static func fromFile(path: Swift.String) -> PlaudDeviceBasicSDK.PlaudEncryptHeader? + @objc public var isEncrypted: Swift.Bool { + @objc get + } + @objc public var userIdString: Swift.String { + @objc get + } + @objc override dynamic public var description: Swift.String { + @objc get + } + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudLogConfig : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudLogConfig + @objc public var maxFileCount: Swift.Int { + get + } + @objc public var maxFileAge: Swift.Double { + get + } + @objc public var maxFileSize: Swift.Int64 { + get + } + @objc public var uploadInterval: Foundation.TimeInterval { + get + } + @objc public var uploadTimeout: Swift.Double { + get + } + @objc public func updateFileConfiguration(maxFileCount: Swift.Int = 10, maxFileAge: Foundation.TimeInterval = 7 * 24 * 60 * 60, maxFileSize: Swift.Int64 = 10 * 1024 * 1024) + @objc public func updateUploadConfiguration(uploadInterval: Foundation.TimeInterval = { + return 300 + }(), uploadTimeout: Foundation.TimeInterval = 30) + @objc public func resetToDefaults() + @objc public func getCurrentConfiguration() -> [Swift.String : Any] + @objc public var maxFileAgeDays: Swift.Int { + @objc get + } + @objc public var maxFileSizeMB: Swift.Int { + @objc get + } + @objc public var uploadIntervalMinutes: Swift.Int { + @objc get + } + @objc public var uploadTimeoutSeconds: Swift.Int { + @objc get + } + @objc deinit +} +extension Foundation.NSNotification.Name { + public static let plaudLogConfigurationChanged: Foundation.NSNotification.Name +} +extension PlaudDeviceBasicSDK.PlaudLogConfig { + @objc dynamic public func validateConfiguration() -> Swift.Bool + @objc dynamic public func getConfigurationDescription() -> Swift.String +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudLogFileRotationManager : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudLogFileRotationManager + @objc public func forceRotateCurrentLogFile() + @objc public func checkAndRotateIfNeeded(filePath: Swift.String, additionalSize: Swift.Int64) -> Swift.Bool + @objc public func getCurrentLogFilePath() -> Swift.String + @objc public func notifyUploadCompleted() + @objc deinit +} +@objc public protocol PlaudWiFiAgentProtocol { + @objc optional func wifiCommonErr(_ cmd: Swift.Int, _ status: Swift.Int) + @objc optional func wifiHandshake(_ status: Swift.Int) + @objc optional func wifiConnectionStatus(_ ssid: Swift.String, _ connected: Swift.Bool) + @objc optional func wifiPower(_ power: Swift.Int, _ voltage: Swift.Int) + @objc optional func wifiFileListFail(_ status: Swift.Int) + @objc optional func wifiFileList(_ files: [PlaudBleSDK.BleFile]) + @objc optional func wifiSyncFile(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc optional func wifiSyncFileData(_ sessionId: Swift.Int, _ offset: Swift.Int, _ count: Swift.Int, _ binData: Foundation.Data) + @objc optional func wifiDataComplete() + @objc optional func wifiSyncFileStop(_ status: Swift.Int) + @objc optional func wifiFileDelete(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc optional func wifiClientFail() + @objc optional func wifiClose(_ status: Swift.Int) + @objc optional func wifiRateFail(_ status: Swift.Int) + @objc optional func wifiRate(_ instantRate: Swift.Int, _ averageRate: Swift.Int, _ lossRate: Swift.Double) + @objc optional func wifiLogsFail(_ status: Swift.Int) + @objc optional func wifiLogs(_ logData: Foundation.Data?) + @objc optional func wifiTips(_ tips: Swift.Int) + @objc optional func wifiDownloadAllProgress(_ totalFiles: Swift.Int, _ currentFileIndex: Swift.Int, _ currentFile: PlaudBleSDK.BleFile?, _ totalProgress: Swift.Double) + @objc optional func wifiDownloadAllCompleted(_ completedFiles: Swift.Int, _ failedFiles: Swift.Int) +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudWiFiAgent : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudWiFiAgent + @objc weak public var delegate: (any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol)? { + @objc get + @objc set + } + @objc public var bleDevice: PlaudBleSDK.BleDevice? { + @objc get + @objc set + } + @objc public var isDownloading: Swift.Bool { + @objc get + } + @objc public var currentSessionId: Swift.Int { + @objc get + } + @objc public var isConnected: Swift.Bool { + @objc get + } + @objc public var currentDownloadSpeedKBps: Swift.Double { + @objc get + } + @objc public func getFormattedDownloadSpeed() -> Swift.String + @objc public var isDownloadingAll: Swift.Bool { + get + } + @objc public func openLog(_ opened: Swift.Bool, _ backBlock: ((Swift.String) -> Swift.Void)? = nil) + @objc public func listenPort(_ ssid: Swift.String, _ overtimeSec: Swift.Int = 30) + @available(iOS 11.0, *) + @objc public func connectWifi(_ ssid: Swift.String, _ passphrase: Swift.String, _ overtimeSec: Swift.Int = 60) + @objc public func disconnect() + @objc public func isConnectedTo(_ ssid: Swift.String) -> Swift.Bool + @objc public func getConnectionStatusDescription() -> Swift.String + @objc public func getCurrentWiFiName() -> Swift.String? + @objc public func getFileList(_ uid: Swift.Int, _ sessionId: Swift.Int, _ single: Swift.Bool = false) + @objc public func syncFile(_ sessionId: Swift.Int, _ start: Swift.Int, _ end: Swift.Int = 0, _ scene: Swift.Int = 1) + @objc public func stopSyncFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc public func deleteFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + public func exportAudioViaWiFi(sessionId: Swift.Int, outputDir: Swift.String, format: PlaudDeviceBasicSDK.AudioExportFormat, channels: Swift.Int = 1, callback: any PlaudDeviceBasicSDK.AudioExportCallback) + @objc public func startDownloadAll() + @objc public func stopDownloadAll() + @objc public func startRateTest(_ onOff: Swift.Bool, _ packSize: Swift.Int) + @objc public func getDeviceLogs(_ begin: Swift.Bool) + @objc public func isWebSocketConnected() -> Swift.Bool + @objc deinit +} +extension PlaudDeviceBasicSDK.PlaudWiFiAgent : PlaudWiFiSDK.WiFiAgentProtocol { + @objc dynamic public func wifiCommonErr(_ cmd: Swift.Int, _ status: Swift.Int) + @objc dynamic public func wifiHandshake(_ status: Swift.Int) + public func wifiConnectionStatus(_ ssid: Swift.String, _ connected: Swift.Bool) + @objc dynamic public func wifiPower(_ power: Swift.Int, _ voltage: Swift.Int) + @objc dynamic public func wifiFileListFail(_ status: Swift.Int) + @objc dynamic public func wifiFileList(_ files: [PlaudBleSDK.BleFile]) + @objc dynamic public func wifiSyncFile(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc dynamic public func wifiSyncFileData(_ sessionId: Swift.Int, _ offset: Swift.Int, _ count: Swift.Int, _ binData: Foundation.Data) + @objc dynamic public func wifiDataComplete() + @objc dynamic public func wifiSyncFileStop(_ status: Swift.Int) + @objc dynamic public func wifiFileDelete(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc dynamic public func wifiClientFail() + @objc dynamic public func wifiClose(_ status: Swift.Int) + @objc dynamic public func wifiRateFail(_ status: Swift.Int) + @objc dynamic public func wifiRate(_ instantRate: Swift.Int, _ averageRate: Swift.Int, _ lossRate: Swift.Double) + @objc dynamic public func wifiLogsFail(_ status: Swift.Int) + @objc dynamic public func wifiLogs(_ logData: Foundation.Data?) + @objc dynamic public func wifiTips(_ tips: Swift.Int) + @objc dynamic public func penRequestOTAData(start: Swift.Int, end: Swift.Int, payloadSize: Swift.Int, uid: Swift.Int, sendRatePPS: Swift.Int) + @objc dynamic public func wifiOTAStatus(_ status: Swift.Int, _ uid: Swift.Int) +} +@_hasMissingDesignatedInitializers public class RSASecretConfig { + public static let defaultPublicKey: Swift.String + public static let defaultPrivateKey: Swift.String + public static func setKeys(publicKey: Swift.String, privateKey: Swift.String) + public static func getSnSignature(for sn: Swift.String) -> Swift.String? + public static func setSnSignature(_ signature: Swift.String, for sn: Swift.String) + public static func clearSnSignature(for sn: Swift.String) + public static func clearAllSnSignatures() + public static func clearKeys() + public static func getCurrentPublicKey() -> Swift.String + public static func getCurrentPrivateKey() -> Swift.String + public static func getPublicKey() throws -> PlaudBleSDK.PublicKey + public static func getPrivateKey() throws -> PlaudBleSDK.PrivateKey + public static func hasCustomKeys() -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @objc(PlaudLogEncryption) public class PlaudLogEncryption : ObjectiveC.NSObject { + @objc public static func exportEncryptedLogs() -> Foundation.NSURL? + @objc override dynamic public init() + @objc deinit +} +extension PlaudDeviceBasicSDK.Model : Swift.Equatable {} +extension PlaudDeviceBasicSDK.Model : Swift.Hashable {} +extension PlaudDeviceBasicSDK.Model : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.SoundCategory : Swift.Equatable {} +extension PlaudDeviceBasicSDK.SoundCategory : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudDomainManager.Region : Swift.Equatable {} +extension PlaudDeviceBasicSDK.PlaudDomainManager.Region : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudDomainManager.Region : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.PlaudLogUploadError : Swift.Equatable {} +extension PlaudDeviceBasicSDK.PlaudLogUploadError : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudLogUploadError : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.WorkflowStatus : Swift.Equatable {} +extension PlaudDeviceBasicSDK.WorkflowStatus : Swift.Hashable {} +extension PlaudDeviceBasicSDK.WorkflowStatus : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.WorkflowTaskType : Swift.Equatable {} +extension PlaudDeviceBasicSDK.WorkflowTaskType : Swift.Hashable {} +extension PlaudDeviceBasicSDK.WorkflowTaskType : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.AudioDecryptorError : Swift.Equatable {} +extension PlaudDeviceBasicSDK.AudioDecryptorError : Swift.Hashable {} +extension PlaudDeviceBasicSDK.AudioDecryptorError : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.ChaCha20Error : Swift.Equatable {} +extension PlaudDeviceBasicSDK.ChaCha20Error : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudDownloadFormat : Swift.Equatable {} +extension PlaudDeviceBasicSDK.PlaudDownloadFormat : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudDownloadFormat : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.AudioExportFormat : Swift.Equatable {} +extension PlaudDeviceBasicSDK.AudioExportFormat : Swift.Hashable {} +extension PlaudDeviceBasicSDK.AudioExportFormat : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.EncryptionError : Swift.Equatable {} +extension PlaudDeviceBasicSDK.EncryptionError : Swift.Hashable {} +extension PlaudDeviceBasicSDK.EncryptionError : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.PlaudFirmwarePhase : Swift.Equatable {} +extension PlaudDeviceBasicSDK.PlaudFirmwarePhase : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudFirmwarePhase : Swift.RawRepresentable {} diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/module.modulemap b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/module.modulemap new file mode 100644 index 0000000..e96fcbc --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/module.modulemap @@ -0,0 +1,11 @@ +framework module PlaudDeviceBasicSDK { + umbrella header "PlaudDeviceBasicSDK.h" + export * + + module * { export * } +} + +module PlaudDeviceBasicSDK.Swift { + header "PlaudDeviceBasicSDK-Swift.h" + requires objc +} diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK new file mode 100644 index 0000000..d83920e Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/Info.plist b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/Info.plist new file mode 100644 index 0000000..08cb0fb --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/Info.plist @@ -0,0 +1,29 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleIdentifier + com.plaud.PlaudDeviceBasicSDK + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + PlaudDeviceBasicSDK + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + CFBundleSupportedPlatforms + + iPhoneOS + + CFBundleLocalizations + + en + zh-Hans + + + diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings new file mode 100644 index 0000000..8ff533c --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings @@ -0,0 +1,149 @@ +// Common +"ok" = "OK"; +"cancel" = "Cancel"; +"confirm" = "Confirm"; +"error" = "Error"; + +// Permission +"permission_init_failed" = "SDK permission initialization failed, please contact developer platform"; +"permission_denied" = "No permission for this feature, please contact developer platform"; + +// Print +"print_error" = "Print Error"; +"print_success" = "Print Success"; +"print_cancelled" = "Print Cancelled"; +"print_test_framework" = "Testing Static Library --framework"; + +// SDK Resource +"sdk_resource_init_failed" = "Resource initialization failed. Please check if the Host App has correctly added PlaudDeviceBasicSDK.bundle"; + +// Binary File +"binary_file_empty" = "Binary file data is empty"; +"binary_data_not_available" = "Error: Binary data is not available"; +"invalid_package_offset_size" = "Error: Invalid package offset or size"; +"binary_file_transfer_complete" = "transfer binary file complete"; +"binary_file_transfer_succeed" = "transfer binary file succeed"; + + +// Device Scanning and Connection +"scan_device" = "Scan Device"; +"refresh" = "Refresh"; +"connect" = "Connect"; +"signal_strength_format" = "Signal Strength: %ld dBm"; +"sn_format" = "SN: %@"; +"status_unbound" = "Status: Unbound"; +"status_bound" = "Status: Bound"; +"device_connecting" = "Device Connecting"; +"device_disconnected" = "Device Disconnected"; +"device_connect_failed" = "Device Connection Failed"; +"device_connect_unknown" = "Unknown Connection Status"; +"device_already_bound" = "Device is already bound, cannot bind to a new device"; + +// WiFi Settings +"wifi_setup" = "Wi-Fi Setup"; +"wifi_24g_only" = "Only supports 2.4GHz networks"; +"wifi_name" = "Name"; +"wifi_password" = "Password"; +"wifi_name_placeholder" = "Enter Wi-Fi name"; +"wifi_password_placeholder" = "Enter Wi-Fi password"; +"wifi_test_connection" = "Test Connection"; +"wifi_connected" = "Connected"; +"wifi_connecting" = "Connecting, please wait..."; +"wifi_forget" = "Ignore Network"; +"wifi_edit" = "Edit"; +"wifi_done" = "Done"; +"wifi_alert_title" = "Notice"; +"wifi_alert_input_required" = "Please enter both Wi-Fi name and password"; +"wifi_alert_connection_success" = "Connection Success"; +"wifi_alert_connection_success_message" = "Wi-Fi connection test successful"; +"wifi_alert_connection_failed" = "Connection Failed"; +"wifi_alert_forget_title" = "Ignore Network"; +"wifi_alert_forget_message" = "Are you sure you want to forget this Wi-Fi network?"; +"wifi_alert_forget_confirm" = "Forget"; + +// WiFi Setting Page +"wifi_cloud_title" = "Wi-Fi Cloud Sync"; +"wifi_cloud_desc" = "NotePin will automatically connect to your configured Wi-Fi networks to upload recordings to the cloud. You can add multiple networks (e.g., home, work). Only 2.4GHz networks are supported."; +"wifi_cloud_switch" = "Wi-Fi Cloud Sync"; +"wifi_cloud_set_address" = "Set Sync Address"; +"wifi_cloud_info" = "Private Cloud Sync is Plaud.AI's dedicated private cloud space for each user, ensuring secure data backup and preventing loss."; +"wifi_configure" = "Configure Wi-Fi"; +"wifi_network_list" = "Network List"; +"wifi_other" = "Other..."; +"wifi_set_address_title" = "Set Sync Address"; +"wifi_set_address_message" = "Please enter server address"; +"wifi_test_timeout" = "Timeout Error"; +"wifi_test_not_found" = "Connection failed: Wi-Fi not found"; +"wifi_test_wrong_password" = "Connection failed: Wrong Wi-Fi password"; +"wifi_test_failed" = "Wi-Fi connection failed"; +"wifi_test_data_failed" = "Connection failed: Data transfer error"; +"wifi_add_limit_title" = "Add Failed"; +"wifi_add_limit_message" = "Maximum 5 Wi-Fi networks allowed. Please delete one first"; + +// Audio Player +"audio_player_title" = "Audio Player"; +"audio_status_ready" = "Ready to Play"; +"audio_status_playing" = "Playing..."; +"audio_status_paused" = "Paused"; +"audio_status_finished" = "Finished"; +"audio_status_complete" = "Playback Complete"; +"audio_status_error" = "Playback Error"; +"audio_load_failed_format" = "Audio Load Failed: %@"; +"audio_decode_error_format" = "Decode Error: %@"; +"audio_unknown_error" = "Unknown Error"; + +// WiFi Test +"wifi_test_timeout" = "Timeout Error"; + +// File Download +"file_downloading" = "Stream file downloading in progress"; +"file_transcoding" = "Transcoding..."; +"file_download_complete" = "Download file complete"; +"file_transcode_error" = "Transcoding error"; +"file_transcode_error_no_permission" = "Transcoding error, no permission"; + + +// Workflow Status +"pending" = "Pending"; +"running" = "Running"; +"progress" = "In Progress"; +"success" = "Success"; +"failure" = "Failed"; +"cancelled" = "Cancelled"; +"timeout" = "Timeout"; + +// Workflow Task Types +"ai_etl" = "AI ETL"; +"audio_merge" = "Audio Merge"; +"custom" = "Custom"; +"unknown" = "Unknown"; +"audio_transcribe" = "Audio Transcription"; +"ai_summarize" = "AI Summary"; + +// Workflow Errors +"invalid_url" = "Invalid URL"; +"network_error" = "Network Error"; +"invalid_response" = "Invalid Response"; +"server_error" = "Server Error"; +"workflow_not_found" = "Workflow Not Found"; +"workflow_failed" = "Workflow Failed"; +"no_api_token" = "No API Token"; + +// Update Manager +"update.message.no_update_available" = "No update available"; +"update.message.user_cancelled" = "Update cancelled by user"; +"update.error.network" = "Network error: %@"; +"update.error.invalid_response" = "Invalid response from server"; +"update.error.download_failed" = "Download failed: %@"; +"update.error.file_system" = "File system error: %@"; +"update.error.no_update_available" = "No update available"; +"update.error.user_cancelled" = "Update cancelled by user"; +"update.error.unknown" = "Unknown error occurred"; + +// Update Alerts +"update.alert.title.force" = "Force Update"; +"update.alert.title.new_version" = "New Version Available"; +"update.alert.new_version" = "New Version: %@"; +"update.alert.ask_to_download" = "Download and install now?"; +"update.alert.action.remind_later" = "Remind Me Later"; +"update.alert.action.update_now" = "Update Now"; diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings new file mode 100644 index 0000000..3555871 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings @@ -0,0 +1,150 @@ +// Common +"ok" = "确定"; +"cancel" = "取消"; +"confirm" = "确认"; +"error" = "错误"; + +// Permission +"permission_init_failed" = "SDK权限初始化失败,请联系开发者平台"; +"permission_denied" = "该功能暂无权限,请联系开发者平台"; + +// Print +"print_error" = "打印错误"; +"print_success" = "打印成功"; +"print_cancelled" = "打印已取消"; +"print_test_framework" = "测试静态库 --framework"; + +// SDK Resource +"sdk_resource_init_failed" = "资源初始化失败,请检查Host App 是否正确添加PlaudDeviceBasicSDK.bundle"; + +// Binary File +"binary_file_empty" = "二进制文件数据为空"; +"binary_data_not_available" = "错误:二进制数据不可用"; +"invalid_package_offset_size" = "错误:无效的数据包偏移量或大小"; +"binary_file_transfer_complete" = "二进制文件传输完成"; +"binary_file_transfer_succeed" = "二进制文件传输成功"; + + + +// Device Scanning and Connection +"scan_device" = "扫描设备"; +"refresh" = "刷新"; +"connect" = "连接"; +"signal_strength_format" = "信号强度: %ld dBm"; +"sn_format" = "SN: %@"; +"status_unbound" = "状态: 未绑定"; +"status_bound" = "状态: 已绑定"; +"device_connecting" = "设备连接中"; +"device_disconnected" = "设备未连接"; +"device_connect_failed" = "设备连接失败"; +"device_connect_unknown" = "未知连接状态"; +"device_already_bound" = "设备已绑定,不能绑定到新的设备"; + +// WiFi Settings +"wifi_setup" = "设置 Wi-Fi"; +"wifi_24g_only" = "仅支持 2.4GHz 网络"; +"wifi_name" = "名称"; +"wifi_password" = "密码"; +"wifi_name_placeholder" = "请输入Wi-Fi名称"; +"wifi_password_placeholder" = "请输入Wi-Fi密码"; +"wifi_test_connection" = "测试连接"; +"wifi_connected" = "已连接"; +"wifi_connecting" = "连接中,请稍候..."; +"wifi_forget" = "忘记此网络"; +"wifi_edit" = "编辑"; +"wifi_done" = "完成"; +"wifi_alert_title" = "提示"; +"wifi_alert_input_required" = "请输入完整的WiFi名称和密码"; +"wifi_alert_connection_success" = "连接成功"; +"wifi_alert_connection_success_message" = "WiFi连接测试成功"; +"wifi_alert_connection_failed" = "连接失败"; +"wifi_alert_forget_title" = "忘记网络"; +"wifi_alert_forget_message" = "确定要忘记这个WiFi网络吗?"; +"wifi_alert_forget_confirm" = "忘记"; + +// WiFi Setting Page +"wifi_cloud_title" = "Wi-Fi上云"; +"wifi_cloud_desc" = "NotePin 会自动连接到你配置的 Wi-Fi 网络,将录音上传到云端。你可以添加多个常用网络(例如家里、工作)。目前仅支持 2.4GHz 网络。"; +"wifi_cloud_switch" = "Wi-Fi上云"; +"wifi_cloud_set_address" = "设置地址"; +"wifi_cloud_info" = "Private Cloud Sync 是 Plaud.AI 为每位用户提供的独立私有云空间,用于安全备份数据并防止丢失。"; +"wifi_configure" = "配置 Wi-Fi"; +"wifi_network_list" = "网络列表"; +"wifi_other" = "其他..."; +"wifi_set_address_title" = "设置上传地址"; +"wifi_set_address_message" = "请输入服务器地址"; +"wifi_test_timeout" = "超时错误"; +"wifi_test_not_found" = "连接失败,未找到wifi"; +"wifi_test_wrong_password" = "连接失败,Wifi密码不正确"; +"wifi_test_failed" = "Wifi连接失败"; +"wifi_test_data_failed" = "连接失败,数据传输失败"; +"wifi_add_limit_title" = "添加失败"; +"wifi_add_limit_message" = "最多能配置 5 个 Wi-Fi,请先删除"; + +// Audio Player +"audio_player_title" = "音频播放"; +"audio_status_ready" = "准备播放"; +"audio_status_playing" = "播放中..."; +"audio_status_paused" = "已暂停"; +"audio_status_finished" = "已结束"; +"audio_status_complete" = "播放完成"; +"audio_status_error" = "播放出错"; +"audio_load_failed_format" = "音频加载失败: %@"; +"audio_decode_error_format" = "解码错误: %@"; +"audio_unknown_error" = "未知错误"; + +// WiFi Test +"wifi_test_timeout" = "超时错误"; + +// File Download +"file_downloading" = "流式文件下载中"; +"file_transcoding" = "转码中..."; +"file_download_complete" = "下载并转码完成"; +"file_transcode_error" = "转码错误"; +"file_transcode_error_no_permission" = "转码错误, 无权限"; + +// Workflow Status +"success" = "成功"; +"failure" = "失败"; +"cancelled" = "已取消"; +"timeout" = "超时"; +"pending" = "等待中"; +"running" = "运行中"; +"progress" = "进行中"; + + +// Workflow Task Types +"audio_transcribe" = "音频转写"; +"ai_summarize" = "AI总结"; +"ai_etl" = "AI ETL"; +"audio_merge" = "音频合并"; +"custom" = "自定义"; +"unknown" = "未知"; + +// Workflow Errors +"invalid_url" = "无效URL"; +"network_error" = "网络错误"; +"invalid_response" = "无效响应"; +"server_error" = "服务器错误"; +"workflow_not_found" = "工作流未找到"; +"workflow_failed" = "工作流失败"; +"no_api_token" = "无API令牌"; + +// Update Manager +"update.message.no_update_available" = "暂无可用更新"; +"update.message.user_cancelled" = "用户已取消更新"; +"update.error.network" = "网络错误:%@"; +"update.error.invalid_response" = "服务器响应无效"; +"update.error.download_failed" = "下载失败:%@"; +"update.error.file_system" = "文件系统错误:%@"; +"update.error.no_update_available" = "暂无可用更新"; +"update.error.user_cancelled" = "用户已取消更新"; +"update.error.unknown" = "发生未知错误"; + +// Update Alerts +"update.alert.title.force" = "强制更新"; +"update.alert.title.new_version" = "发现新版本"; +"update.alert.new_version" = "新版本: %@"; +"update.alert.ask_to_download" = "是否立即下载更新?"; +"update.alert.action.remind_later" = "稍后提醒"; +"update.alert.action.update_now" = "立即更新"; diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeDirectory b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeDirectory new file mode 100644 index 0000000..c113f71 Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeDirectory differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements new file mode 100644 index 0000000..648997d Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements-1 b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 0000000..2522204 Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeResources b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..962ac82 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeResources @@ -0,0 +1,341 @@ + + + + + files + + Headers/PlaudDeviceBasicSDK-Swift.h + + MyJZKC2Dxib20/XKyIURHoNxxr8= + + Headers/PlaudDeviceBasicSDK.h + + +3ARYwQKIi29DkheSViaejyPmH8= + + Headers/PlaudLogRedirect.h + + ckzEvXu6/1FI10b3oKL0zXEbS3A= + + Headers/PrintManager.h + + VT4L7jLk+wVGCEFGnF3JweGFM/Q= + + Info.plist + + X47w1KADRTseISgGpC3sEPLhiIM= + + Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo + + rrnDB/HVPhr5QyYyy+Z6g97p0+A= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json + + AHKGNG17Br/tVF9A4Ou7mYQDNJ8= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.private.swiftinterface + + R1g7NA8TG68Cqt0xoJxW+SNkh4w= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc + + 11egdFo9RVS5Oclw3eOWENsxw6Y= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface + + R1g7NA8TG68Cqt0xoJxW+SNkh4w= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftmodule + + ekU8jiThottTBjZAu9F2raMlfMM= + + Modules/module.modulemap + + ZJvUCCKKCV47/yuYtJPmSszr5KY= + + PlaudDeviceBasicSDK.bundle/Info.plist + + 5y3sypvdnO7MC5O2E9hFiqbrO0M= + + PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings + + hash + + wMAmf73xxnfRA5adBiJcjpHv0WA= + + optional + + + PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings + + hash + + bApgxzM1OZkEyoSVAZ2qq04LOmA= + + optional + + + plaud_ai_data.txt + + ka+Py3CnSLpccrtN1aFwvFtl5Ec= + + + files2 + + Headers/PlaudDeviceBasicSDK-Swift.h + + hash + + MyJZKC2Dxib20/XKyIURHoNxxr8= + + hash2 + + bcX/LnCiK9CyTGbgc2fe7B5xuAnUINuGvyAwkkNUM4U= + + + Headers/PlaudDeviceBasicSDK.h + + hash + + +3ARYwQKIi29DkheSViaejyPmH8= + + hash2 + + /amvzBOtoprFzLs7cx1e3UWBQwXSttj2LKk6+wb8V0w= + + + Headers/PlaudLogRedirect.h + + hash + + ckzEvXu6/1FI10b3oKL0zXEbS3A= + + hash2 + + gV4LIMvMfvdE0gLWQJE10XDV9121caPYVua/f4DkZFk= + + + Headers/PrintManager.h + + hash + + VT4L7jLk+wVGCEFGnF3JweGFM/Q= + + hash2 + + w0E7hV+SQJ54ZIY+IbgLShpQal6cv3lyub7tNy4/cyA= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo + + hash + + rrnDB/HVPhr5QyYyy+Z6g97p0+A= + + hash2 + + aWQuIUuSroGXrP9/gJ5VbrYzqHJwn7/jbSP7zigqplA= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json + + hash + + AHKGNG17Br/tVF9A4Ou7mYQDNJ8= + + hash2 + + a1IVjMjuqxf6azljtaV1vxXFPlEadlQ/7UiOtTOMYco= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.private.swiftinterface + + hash + + R1g7NA8TG68Cqt0xoJxW+SNkh4w= + + hash2 + + aCjNl4w08Tjfz0Pp8AWm0O8OK+YQP7iGgfHhIbakoPM= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc + + hash + + 11egdFo9RVS5Oclw3eOWENsxw6Y= + + hash2 + + 2+6SEbG9EJL2RD/1gfQfTdY+8UcC9mwp/bsB9hqpQTY= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface + + hash + + R1g7NA8TG68Cqt0xoJxW+SNkh4w= + + hash2 + + aCjNl4w08Tjfz0Pp8AWm0O8OK+YQP7iGgfHhIbakoPM= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftmodule + + hash + + ekU8jiThottTBjZAu9F2raMlfMM= + + hash2 + + iXpqfO7mx1PxR3TxcTF7r0Sg8IG0rQM4+cp4s31eas0= + + + Modules/module.modulemap + + hash + + ZJvUCCKKCV47/yuYtJPmSszr5KY= + + hash2 + + Yr6dni0J5v/6LMztrNMzGleM8nVoaWjnXZsHHJ9YPIo= + + + PlaudDeviceBasicSDK.bundle/Info.plist + + hash + + 5y3sypvdnO7MC5O2E9hFiqbrO0M= + + hash2 + + FJBbA3UyOe5tSm5M+QJ9+ZfsgooQYcaTRaslCUfYoqM= + + + PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings + + hash + + wMAmf73xxnfRA5adBiJcjpHv0WA= + + hash2 + + G0pY2fvF/epULhD9i2hy6v22XRRrHv6rDd+w4uyIhoU= + + optional + + + PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings + + hash + + bApgxzM1OZkEyoSVAZ2qq04LOmA= + + hash2 + + 5jyMPl73wOz+N+XmsXCNY3Eeb+pdUXZS97EWu6kn75M= + + optional + + + plaud_ai_data.txt + + hash + + ka+Py3CnSLpccrtN1aFwvFtl5Ec= + + hash2 + + U2l4bAmm40GRd2I9mBcTaH7FRhI3h3CT31kan1c8D+8= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeSignature b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeSignature new file mode 100644 index 0000000..9e3f683 Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeSignature differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/plaud_ai_data.txt b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/plaud_ai_data.txt new file mode 100644 index 0000000..044a960 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/plaud_ai_data.txt @@ -0,0 +1,1702 @@ + + +type1: +{ + "status" : "SUCCESS", + "id" : "wf_01984467-041c-4ab2-97d4-1c39dac0c8d2", + "owner_id" : "test-001", + "metadata_json" : { + + }, + "tasks" : [ + { + "task_type" : "audio_transcribe", + "status" : "SUCCESS", + "result" : { + "status" : 3, + "embeddings" : { + "Speaker 1" : [ + -0.19234217703342438, + 0.15948718786239624, + -0.10121628642082214, + 0.09667099267244339, + -0.10816331207752228, + 0.14343123137950897, + -0.094416134059429169, + 0.14881746470928192, + -0.072478733956813812, + -0.088625960052013397, + -0.11696280539035797, + -0.17257097363471985, + 0.19466535747051239, + 0.27258849143981934, + -0.034721933305263519, + 0.26778826117515564, + 0.01423680130392313, + 0.16383779048919678, + 0.14811916649341583, + 0.1229625791311264, + -0.26089936494827271, + 0.048276558518409729, + -0.29667317867279053, + -0.059747211635112762, + 0.2219168096780777, + 0.0029855130705982447, + 0.074563905596733093, + 0.073401913046836853, + -0.067731454968452454, + 0.13082771003246307, + 0.26649996638298035, + -0.22226500511169434, + -0.071649461984634399, + 0.40993419289588928, + 0.09660310298204422, + 0.017572876065969467, + -0.01206977479159832, + -0.11588973551988602, + 0.18956200778484344, + -0.11792318522930145, + -0.07967609167098999, + -0.1645093709230423, + 0.01715848408639431, + 0.10080588608980179, + 0.027268635109066963, + 0.07046113908290863, + -0.013552744872868061, + -0.21095576882362366, + -0.086705341935157776, + 0.19767187535762787, + -0.16107642650604248, + -0.013121266849339008, + 0.042569279670715332, + -0.093373171985149384, + -0.20870651304721832, + -0.079430930316448212, + -0.10380082577466965, + 0.047178130596876144, + -0.071631968021392822, + 0.028615860268473625, + 0.14288191497325897, + -0.25993448495864868, + 0.17642973363399506, + 0.025652721524238586, + 0.1193835660815239, + 0.2705918550491333, + -0.26632535457611084, + 0.10181724280118942, + 0.12000474333763123, + 0.21866343915462494, + -0.014766930602490902, + -0.01777997799217701, + 0.13665838539600372, + -0.036518480628728867, + 0.24088461697101593, + 0.1331581175327301, + 0.24392800033092499, + -0.048006385564804077, + 0.14288094639778137, + -0.31120264530181885, + -0.19795562326908112, + 0.18933898210525513, + 0.051715798676013947, + 0.018272586166858673, + -0.10932342708110809, + -0.05836234986782074, + 0.18826363980770111, + -0.052310489118099213, + 0.10870229452848434, + -0.14970879256725311, + 0.065227203071117401, + -0.037733990699052811, + 0.087010063230991364, + 0.10531853139400482, + -0.0015284419059753418, + -0.1226126030087471, + 0.10196753591299057, + 0.13909898698329926, + -0.18919757008552551, + -0.026061775162816048, + 0.046619832515716553, + 0.061219368129968643, + 0.1937614232301712, + 0.23604753613471985, + 0.049536067992448807, + 0.10689438879489899, + -0.066332891583442688, + 0.20075637102127075, + 0.096797734498977661, + 0.10916589200496674, + -0.038406968116760254, + 0.10934307426214218, + -0.23431545495986938, + 0.37497475743293762, + -0.027763955295085907, + -0.099452003836631775, + 0.065108262002468109, + -0.13913810253143311, + -0.061214033514261246, + 0.020255215466022491, + 0.076258979737758636, + -0.28872641921043396, + -0.031529378145933151, + 0.028386011719703674, + 0.0015066558262333274, + 0.13335064053535461, + -0.18243856728076935, + 0.008845135569572449, + 0.014226892963051796, + -0.091008566319942474, + 0.15394964814186096, + 0.17845408618450165, + 0.13104711472988129, + -0.013807497918605804, + 0.20593200623989105, + -0.029723070561885834, + 0.11704555153846741, + 0.19933998584747314, + 0.093228578567504883, + 0.20425538718700409, + 0.035895369946956635, + -0.003707759315147996, + 0.011053327471017838, + -0.062130790203809738, + 0.092562086880207062, + -0.099022693932056427, + -0.15061657130718231, + 0.051656432449817657, + 0.24526003003120422, + -0.25799405574798584, + -0.004706541541963816, + 0.021352224051952362, + -0.14497277140617371, + -0.19192571938037872, + -0.14999799430370331, + 0.24017837643623352, + -0.18151266872882843, + 0.062906302511692047, + 0.18438664078712463, + 0.16227760910987854, + -0.045849699527025223, + -0.014836857095360756, + -0.10389851778745651, + 0.15956704318523407, + 0.047496210783720016, + -0.013092847540974617, + -0.089076630771160126, + -0.022118842229247093, + 0.21509920060634613, + 0.039225015789270401, + 0.073112688958644867, + 0.10146018862724304, + -0.11946260184049606, + -0.19580845534801483, + -0.16934537887573242, + -0.036426417529582977, + 0.044822379946708679, + 0.0066635315306484699, + -0.12034671008586884, + 0.033571489155292511, + -0.14462937414646149, + -0.081339575350284576, + 0.033895552158355713, + -0.02190169133245945, + 0.14421048760414124, + -0.063272669911384583, + -0.032736964523792267, + -0.14766211807727814, + 0.12916681170463562, + 0.075516536831855774, + -0.13715338706970215, + 0.10289894044399261, + -0.11953147500753403, + -0.25960412621498108, + -0.17824186384677887, + + 0.065146192908287048, + 0.058506675064563751, + -0.060783509165048599, + 0.014332784339785576, + 0.024016814306378365, + -0.15361899137496948, + -0.17037390172481537, + 0.053834732621908188, + 0.068668335676193237, + 0.22225691378116608, + 0.055594194680452347, + 0.15268510580062866, + -0.087633624672889709, + -0.15043497085571289, + 0.33224472403526306, + -0.021008389070630074, + -0.052215460687875748, + 0.12713024020195007, + -0.24183684587478638, + 0.12800848484039307, + 0.007440058048814535, + -0.18693780899047852, + -0.062327243387699127, + 0.20647658407688141, + -0.39140555262565613, + 0.11960991472005844, + 0.089925825595855713, + -0.04516398161649704, + -0.37922877073287964, + -0.16119140386581421, + -0.061166856437921524, + -0.045589271932840347, + -0.029988175258040428, + -0.20828233659267426, + -0.21009369194507599, + 0.12811474502086639, + 0.05009855329990387, + 0.18589450418949127, + 0.066524937748908997, + -0.3960881233215332, + 0.20921915769577026, + -0.1141706258058548, + -0.14732800424098969, + -0.31457120180130005, + -0.25601106882095337, + -0.57838451862335205, + -0.044736035168170929, + -0.095158882439136505, + -0.095164597034454346, + -0.18723849952220917, + 0.068853452801704407, + -0.33071690797805786, + 0.014438859187066555, + -0.18069943785667419, + -0.054355964064598083, + 0.35814380645751953, + -0.25015285611152649, + -0.27810752391815186, + 0.20590695738792419, + 0.1270439475774765, + 0.066699407994747162 + ] + }, + "segments" : [ + { + "text" : "如何做产品怎么干,是JK去年与同僚的最多的话题,是销中上市时创下了70倍PE的市值6月18日饮食市值继续大涨逼近800亿元,资本市场再次一片狂欢,不同于其他公司上市后普发福利红包的热闹与喧嚣饮食公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目该加班的加班,不同的是,所有人都因为饮食换了一种身份。", + "speaker" : "Speaker 1", + "end" : 33220, + "start" : 1200 + }, + { + "text" : "而被受注目,上市这件事情和结婚一样意味着自己的义务变了,虽然兴奋但是身上的担子更重了,JK在采访里提到雷锋网了解到近两个月来饮食进行了一轮较大范围的组织架构调整将多条产品线进行重新整合多番调整下饮食又何变化欢迎添加微信和Q501一起交流,年初至今饮食的团队规模扩充了不少。", + "speaker" : "Speaker 1", + "end" : 63931, + "start" : 33220 + }, + { + "text" : "调整的过程虽有些波折但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化,从而去应对三家争霸饮食今年压力最大前有DJI 后有追秘都在布局全景相继有一次JK与众欣赏地说,我们需要全面备战一位饮食员工说道,赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难,而IPO只是一个分水岭。", + "speaker" : "Speaker 1", + "end" : 95392, + "start" : 64292 + }, + { + "text" : "如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题屋子里的大象来势汹汹饮食怎么应对,饮食到底值不值70倍的皮未来是否能守得住自己的市场份额,竞争如此胶着管理层是什么思考的,01,dji 濒临城下影视如何应对今年 jk 在年会上承认在 dji 面前他们确实还是弟弟承认归承认。", + "speaker" : "Speaker 1", + "end" : 129763, + "start" : 96222 + }, + { + "text" : "jk 也同时在内部放话战术上重视战略上升为做好打印帐跑马拉松的准备,他认为就像人跑马拉松那个半跑的人或领跑的人还是很重要的,竞争对手给到你的启发远大于从你手上剥夺的东西,影视备战的第一步是先发之人因斯特360 x5在4月抢先发布这距离上一代产品x4发布仅过去一年的时间,要知道此前x2 x3两代的产品周期基本都是两年另一边。", + "speaker" : "Speaker 1", + "end" : 165874, + "start" : 130283 + }, + { + "text" : "影视进一步强化产品和品牌营销让消费者形成认知全景就是因斯特360的天下,今年二月以来影视开始不遗余力为产品造势小刀运动相机出,大到发布新的全景相机X5通过广告投放加大了对目标消费者的市场渗透,坊间流传,今年NST360 X5的广告预算比以往高出不少,雷锋网了解到,X5的广告营销。", + "speaker" : "Speaker 1", + "end" : 197466, + "start" : 166374 + }, + { + "text" : "基本覆盖了各个渠道的KOL,凭借全新的产品在大幅度的广告投流下影视X5发布初期就取得了比较可观的销量,大规模投放下X5销量情况如何,欢迎添加微信QQ501一起交流至少目前来看,影视的策略是有章法的,影视网罗了硬件3C领域绝大多数的KOL只要有新的KOL开始冒头都会被影视抢先遣下在长期重视营销的结果下。", + "speaker" : "Speaker 1", + "end" : 230296, + "start" : 197466 + }, + { + "text" : "影视逐渐形成了一套围绕KOL的营销方法论,而对面的DJI在营销上的态度始终模棱两可时而强,时而入此前方健有说法称营销曾经是DJI的眼前的公司不开展会汪涛也不会在公众露面市场他也不愿意投品牌也不投,因为汪涛算不清楚这笔账的投入和产出比算不清楚他就不投,汪涛不愿意给KOL花钱他觉得这些人什么都没干。", + "speaker" : "Speaker 1", + "end" : 261690, + "start" : 230296 + }, + { + "text" : "躺着就赚了DJI的钱,谁都不能躺着赚我的钱,熟悉DJI的人是李洋向雷锋网投,2020年以前DJI是比较重视KOL营销的很多渠道的KOL都投了,谢家走了之后这些合作项目就都停了,很长一段时间里DJI的市场团队一度是最没有存在感的部分,人手凋零没几个人对这些人来说要想在汪涛那里拿到市场预算就得向汪涛证明。", + "speaker" : "Speaker 1", + "end" : 292780, + "start" : 261690 + }, + { + "text" : "这些预算投了出去能得到多少钱的回报这个问题没有人能回答出来也因此,dji的市场人员阵亡率很高某种程度上 dji不太重视营销与他在无人机市场的强势领导地位有关,王涛认为只要产品领导力在营销就是可有可无的但当dji开始不断拖新品牌竞争对手的战力指数也更高时,几乎没有人能忽视营销的buff 意识到威胁后现在的dji也一反常态通过加大市场营销投入穷追不舍。", + "speaker" : "Speaker 1", + "end" : 329132, + "start" : 292780 + }, + { + "text" : "2024年火爆全网络的炮", + "speaker" : "Speaker 1", + "end" : 332051, + "start" : 329952 + } + ] + }, + "start_time" : 1750835685115, + "end_time" : 1750835705133, + "task_id" : "task_6586838c-09bf-411f-bc6b-4e0fd76b470b" + }, + { + "task_type" : "ai_summarize", + "status" : "SUCCESS", + "result" : { + "status" : "GatewayTaskStatus.COMPLETED", + "result" : { + "summary_id" : "20250625071508-v2@26337868f9362d731fce60", + "select_prompt_type" : null, + "speaker_mapping" : null, + "use_persona" : false, + "version" : "0.5.0.24", + "tokens_lens" : 1215, + "retry_count" : 0, + "header" : { + "category" : "会议纪要", + "industry_category" : "食品和饮料", + "language_code" : "zh", + "keywords" : [ + "饮食公司", + "市场挑战", + "营销策略" + ], + "recommend_questions" : [ + { + "question" : "饮食公司如何应对市场竞争,尤其是与DJI的竞争?", + "category" : "question_category_content", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "饮食公司如何证明其市值合理性并保持市场份额?", + "category" : "question_category_content", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "饮食公司在市场竞争中面临的压力和挑战是什么?", + "category" : "question_category_content", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "识别饮食公司在市场竞争中的最大风险是什么?", + "category" : "question_category_shortcut", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "如何快速评估饮食公司的营销策略效果?", + "category" : "question_category_shortcut", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "饮食公司如何快速调整以应对市场变化?", + "category" : "question_category_shortcut", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + } + ], + "summary_type" : "MEETING", + "original_category" : "会议纪要", + "summary_id" : "20250625071508-v2@26337868f9362d731fce60", + "headline" : "会议:饮食公司上市后的变化与市场挑战" + }, + "summary" : null, + "ai_suggestion" : "AI已识别出会议中未解决或缺乏明确行动项的问题,请注意:\n1. 饮食公司如何应对市场竞争,尤其是与DJI的竞争,需进一步讨论以制定有效策略。\n2. 饮食公司需要进一步明确如何保持市场份额并证明其市值合理性,以确保公司持续增长。\n3. 饮食公司在市场竞争中面临的压力和挑战,需要深入分析并制定解决方案以降低风险。", + "language" : "简体中文", + "markdown" : "饮食公司 市场挑战 营销策略\n---\n## ⏰ 会议信息\n* 日期和时间: $[audio_start_time]\n* 地点:[输入地点]\n* 与会人员:[输入与会人员]\n## 📝 会议记录\n1. **饮食公司上市后的变化**\n 饮食公司上市时创下70倍PE市值,6月18日市值逼近800亿元,内部气氛依旧平静,员工继续忙碌。公司进行了较大范围的组织架构调整,重新整合多条产品线,并扩充了团队规模,旨在让员工快速适应公司的成长与规模化,以应对市场竞争。\n2. **饮食公司面临的市场挑战**\n 饮食公司面临巨大压力,前有DJI,后有追觅等竞争对手都在布局全景市场。IPO只是分水岭,公司需回答市场三个关键问题:如何应对来势汹汹的竞争对手、是否值70倍PE、未来能否守住市场份额。管理层(JK)在年会上承认在DJI面前仍是“弟弟”,但强调战术上重视、战略上要做好“跑马拉松”的准备,认为竞争对手带来的启发远大于其剥夺的东西。\n3. **饮食公司的营销策略**\n 饮食公司备战的第一步是先发制人,于4月抢先发布Insta360 X5,相较于前代产品缩短了发布周期。公司进一步强化产品和品牌营销,旨在让消费者形成“全景就是Insta360的天下”的认知。自今年2月以来,饮食公司不遗余力地为产品造势,通过广告投放加大市场渗透。坊间流传X5的广告预算远超以往,其营销基本覆盖了各个渠道的KOL。凭借新产品和大规模广告投入,X5发布初期取得了可观销量。饮食公司网罗了硬件3C领域绝大多数KOL,并逐渐形成了一套围绕KOL的营销方法论。\n4. **DJI的营销态度变化**\n DJI在营销上的态度曾模棱两可,时而强时而弱。坊间流传,其创始人汪涛不愿投入市场和品牌营销,因无法算清投入产出比,也不愿为KOL花钱,认为他们“躺着赚钱”。据熟悉DJI的人士透露,2020年以前DJI曾重视KOL营销,但后来合作项目停止,市场团队一度存在感低、人手凋零,且难以向汪涛证明市场预算的回报,导致市场人员“阵亡率”很高。DJI过去不重视营销,部分原因在于其在无人机市场的强势领导地位,汪涛认为只要产品领导力在,营销可有可无。然而,随着DJI不断推出新品牌,且竞争对手的战力指数提高,DJI意识到威胁,一反常态地通过加大市场营销投入来“穷追不舍”。\n## 📅 下一步安排\n- [ ] [输入更多内容]\n\n> **AI建议**\n> AI已识别出会议中未解决或缺乏明确行动项的问题,请注意:\n> 1. 饮食公司如何应对市场竞争,尤其是与DJI的竞争,需进一步讨论以制定有效策略。\n> 2. 饮食公司需要进一步明确如何保持市场份额并证明其市值合理性,以确保公司持续增长。\n> 3. 饮食公司在市场竞争中面临的压力和挑战,需要深入分析并制定解决方案以降低风险。", + "form" : { + "arrangements" : "📅 下一步安排", + "info" : "⏰ 会议信息", + "location" : "地点:[输入地点]", + "ai_suggestions" : "AI建议", + "insert_more" : "[输入更多内容]", + "notes" : "📝 会议记录", + "conclusion" : "结论", + "date_time" : "日期和时间:", + "attendees" : "与会人员:[输入与会人员]" + }, + "endpoint" : "azure-gpt-4o-sc", + "contents" : [ + { + "speaker_name_mapping" : [ + + ], + "arrangements" : [ + + ], + "topics" : [ + { + "topic" : "饮食公司上市后的变化", + "conclusion" : "", + "description" : "饮食公司上市后市值大涨至800亿元,内部气氛依旧平静,员工继续忙碌。公司进行了组织架构调整,扩充团队规模,以适应市场竞争。" + }, + { + "topic" : "饮食公司面临的市场挑战", + "conclusion" : "", + "description" : "饮食公司需要回答市场三个关键问题:如何应对竞争对手、是否值70倍PE、能否保持市场份额。管理层承认在DJI面前仍处于劣势,但强调战略重要性。" + }, + { + "topic" : "饮食公司的营销策略", + "conclusion" : "", + "description" : "饮食公司通过强化产品和品牌营销,形成全景相机市场的认知。X5产品发布后取得可观销量,广告预算较以往增加,覆盖各渠道KOL。" + }, + { + "topic" : "DJI的营销态度变化", + "conclusion" : "", + "description" : "DJI过去对KOL营销态度模棱两可,市场团队存在感低。随着竞争加剧,DJI开始加大市场营销投入。" + } + ], + "theme" : "饮食公司上市后的市场竞争与营销策略", + "ai_suggestion" : "未解决的问题:饮食公司如何应对市场竞争,尤其是与DJI的竞争。任务细节不明确:饮食公司需要进一步明确如何保持市场份额并证明其市值合理性。项目风险:饮食公司在市场竞争中面临的压力和挑战,需要进一步讨论和解决。" + } + ], + "model" : "gpt-4.1", + "text_lens" : 1661 + }, + "text" : "Speaker 1: 如何做产品怎么干,是JK去年与同僚的最多的话题,是销中上市时创下了70倍PE的市值6月18日饮食市值继续大涨逼近800亿元,资本市场再次一片狂欢,不同于其他公司上市后普发福利红包的热闹与喧嚣饮食公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目该加班的加班,不同的是,所有人都因为饮食换了一种身份。\nSpeaker 1: 而被受注目,上市这件事情和结婚一样意味着自己的义务变了,虽然兴奋但是身上的担子更重了,JK在采访里提到雷锋网了解到近两个月来饮食进行了一轮较大范围的组织架构调整将多条产品线进行重新整合多番调整下饮食又何变化欢迎添加微信和Q501一起交流,年初至今饮食的团队规模扩充了不少。\nSpeaker 1: 调整的过程虽有些波折但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化,从而去应对三家争霸饮食今年压力最大前有DJI 后有追秘都在布局全景相继有一次JK与众欣赏地说,我们需要全面备战一位饮食员工说道,赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难,而IPO只是一个分水岭。\nSpeaker 1: 如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题屋子里的大象来势汹汹饮食怎么应对,饮食到底值不值70倍的皮未来是否能守得住自己的市场份额,竞争如此胶着管理层是什么思考的,01,dji 濒临城下影视如何应对今年 jk 在年会上承认在 dji 面前他们确实还是弟弟承认归承认。\nSpeaker 1: jk 也同时在内部放话战术上重视战略上升为做好打印帐跑马拉松的准备,他认为就像人跑马拉松那个半跑的人或领跑的人还是很重要的,竞争对手给到你的启发远大于从你手上剥夺的东西,影视备战的第一步是先发之人因斯特360 x5在4月抢先发布这距离上一代产品x4发布仅过去一年的时间,要知道此前x2 x3两代的产品周期基本都是两年另一边。\nSpeaker 1: 影视进一步强化产品和品牌营销让消费者形成认知全景就是因斯特360的天下,今年二月以来影视开始不遗余力为产品造势小刀运动相机出,大到发布新的全景相机X5通过广告投放加大了对目标消费者的市场渗透,坊间流传,今年NST360 X5的广告预算比以往高出不少,雷锋网了解到,X5的广告营销。\nSpeaker 1: 基本覆盖了各个渠道的KOL,凭借全新的产品在大幅度的广告投流下影视X5发布初期就取得了比较可观的销量,大规模投放下X5销量情况如何,欢迎添加微信QQ501一起交流至少目前来看,影视的策略是有章法的,影视网罗了硬件3C领域绝大多数的KOL只要有新的KOL开始冒头都会被影视抢先遣下在长期重视营销的结果下。\nSpeaker 1: 影视逐渐形成了一套围绕KOL的营销方法论,而对面的DJI在营销上的态度始终模棱两可时而强,时而入此前方健有说法称营销曾经是DJI的眼前的公司不开展会汪涛也不会在公众露面市场他也不愿意投品牌也不投,因为汪涛算不清楚这笔账的投入和产出比算不清楚他就不投,汪涛不愿意给KOL花钱他觉得这些人什么都没干。\nSpeaker 1: 躺着就赚了DJI的钱,谁都不能躺着赚我的钱,熟悉DJI的人是李洋向雷锋网投,2020年以前DJI是比较重视KOL营销的很多渠道的KOL都投了,谢家走了之后这些合作项目就都停了,很长一段时间里DJI的市场团队一度是最没有存在感的部分,人手凋零没几个人对这些人来说要想在汪涛那里拿到市场预算就得向汪涛证明。\nSpeaker 1: 这些预算投了出去能得到多少钱的回报这个问题没有人能回答出来也因此,dji的市场人员阵亡率很高某种程度上 dji不太重视营销与他在无人机市场的强势领导地位有关,王涛认为只要产品领导力在营销就是可有可无的但当dji开始不断拖新品牌竞争对手的战力指数也更高时,几乎没有人能忽视营销的buff 意识到威胁后现在的dji也一反常态通过加大市场营销投入穷追不舍。\nSpeaker 1: 2024年火爆全网络的炮" + }, + "start_time" : 1750835707579, + "end_time" : 1750835761292, + "task_id" : "task_b702b0b5-4493-495e-8eda-45eb58213965" + } + ], + "file_id" : "file_3c57ce78-4860-4efb-8e2b-e394e9d5ea55" +} + + +type2: +{ + "status" : "SUCCESS", + "id" : "wf_f4d449c4-ce10-4409-971c-9f7f2efa56d0", + "owner_id" : "test-001", + "metadata_json" : { + + }, + "tasks" : [ + { + "task_type" : "audio_transcribe", + "status" : "SUCCESS", + "result" : { + "segments" : [ + { + "start" : 1.5700000000000001, + "speaker" : "speaker_1", + "end" : 2.3199999999999998, + "text" : "如何做产品?" + }, + { + "start" : 2.3999999999999999, + "speaker" : "speaker_1", + "end" : 3, + "text" : "怎么干?" + }, + { + "start" : 3.1600000000000001, + "speaker" : "speaker_1", + "end" : 6.7599999999999998, + "text" : "DJI 是 JK 去年与投资人聊的最多的话题。" + }, + { + "start" : 8.0690000000000008, + "speaker" : "speaker_1", + "end" : 10.898999999999999, + "text" : "直销中上市时创下了70倍 PE 的市值。" + }, + { + "start" : 11.179, + "speaker" : "speaker_1", + "end" : 16.818999999999999, + "text" : "6月18日,饮食市值继续大涨,逼近800亿元,资本市场再次一片狂欢。" + }, + { + "start" : 18.059999999999999, + "speaker" : "speaker_1", + "end" : 27.690000000000001, + "text" : "不同于其他公司上市后普发福利红包的热闹与喧嚣,影视公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目。" + }, + { + "start" : 28.23, + "speaker" : "speaker_1", + "end" : 34.299999999999997, + "text" : "该加班的加班,不同的是,所有人都因为饮食换了一种身份而备受瞩目。" + }, + { + "start" : 35.299999999999997, + "speaker" : "speaker_1", + "end" : 39.100000000000001, + "text" : "上市这件事情和结婚一样,意味着自己的义务变了。" + }, + { + "start" : 39.909999999999997, + "speaker" : "speaker_1", + "end" : 42.469999999999999, + "text" : "虽然兴奋,但是身上的担子更重了。" + }, + { + "start" : 43.189999999999998, + "speaker" : "speaker_1", + "end" : 51.229999999999997, + "text" : "JK 在采访里提到,雷锋网了解到,近两个月来,影视进行了一轮较大范围的组织架构调整。" + }, + { + "start" : 51.759999999999998, + "speaker" : "speaker_1", + "end" : 57.359999999999999, + "text" : "将多条产品线进行重新整合,多番调整下饮食有何变化?" + }, + { + "start" : 57.560000000000002, + "speaker" : "speaker_1", + "end" : 60.359999999999999, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 60.719999999999999, + "speaker" : "speaker_1", + "end" : 72.599999999999994, + "text" : "年初至今饮食的团队规模扩充了不少,调整的过程虽有些波折,但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化。" + }, + { + "start" : 73.090000000000003, + "speaker" : "speaker_1", + "end" : 80.969999999999999, + "text" : "从而去应对三家争霸,饮食今年压力最大,前有 DJI 后有追觅,都在布局全景相机。" + }, + { + "start" : 81.329999999999998, + "speaker" : "speaker_1", + "end" : 83.689999999999998, + "text" : "有一次 JK 语重心长地说。" + }, + { + "start" : 84.040000000000006, + "speaker" : "speaker_1", + "end" : 87.629999999999995, + "text" : "我们需要全面备战,一位饮食员工说道。" + }, + { + "start" : 88.269999999999996, + "speaker" : "speaker_1", + "end" : 93.629999999999995, + "text" : "赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难。" + }, + { + "start" : 94.040000000000006, + "speaker" : "speaker_1", + "end" : 95.510000000000005, + "text" : "而 IPO 只是一个分水岭。" + }, + { + "start" : 96.510000000000005, + "speaker" : "speaker_1", + "end" : 104.43000000000001, + "text" : "如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题。" + }, + { + "start" : 105.23999999999999, + "speaker" : "speaker_1", + "end" : 108.52, + "text" : "屋子里的大象来势汹汹,饮食怎么应对?" + }, + { + "start" : 109.23999999999999, + "speaker" : "speaker_1", + "end" : 114.2, + "text" : "饮食到底值不值70倍的 PE 未来是否能守得住自己的市场份额?" + }, + { + "start" : 114.92, + "speaker" : "speaker_1", + "end" : 116, + "text" : "竞争如此胶灼。" + }, + { + "start" : 116.59999999999999, + "speaker" : "speaker_1", + "end" : 118, + "text" : "管理层是什么思考呢?" + }, + { + "start" : 118.8, + "speaker" : "speaker_1", + "end" : 123.04000000000001, + "text" : "0 DJI 兵临城下,饮食如何应对?" + }, + { + "start" : 123.64, + "speaker" : "speaker_1", + "end" : 128.03999999999999, + "text" : "今年 JK 在年会上承认,在 DJI 面前他们确实还是弟弟。" + }, + { + "start" : 128.88, + "speaker" : "speaker_1", + "end" : 129.96000000000001, + "text" : "承认归承认。" + }, + { + "start" : 130.47, + "speaker" : "speaker_1", + "end" : 137.91, + "text" : "JK 也同时在内部放话,战术上重视,战略上升维,做好打硬仗、跑马拉松的准备。" + }, + { + "start" : 138.55000000000001, + "speaker" : "speaker_1", + "end" : 140.71000000000001, + "text" : "他认为就像人跑马拉松。" + }, + { + "start" : 141.11000000000001, + "speaker" : "speaker_1", + "end" : 144.13999999999999, + "text" : "那个半跑的人或领跑的人还是很重要的。" + }, + + { + "start" : 144.41999999999999, + "speaker" : "speaker_1", + "end" : 148.62, + "text" : "竞争对手给到你的启发远大于从你手上剥夺的东西。" + }, + { + "start" : 149.5, + "speaker" : "speaker_1", + "end" : 151.66, + "text" : "饮食备战的第一步是先发制人。" + }, + { + "start" : 153.08000000000001, + "speaker" : "speaker_1", + "end" : 159.80000000000001, + "text" : "Insta 3六0 x 五在4月抢先发布,这距离上一代产品 X4发布仅过去一年的时间。" + }, + { + "start" : 160.03999999999999, + "speaker" : "speaker_1", + "end" : 164.75999999999999, + "text" : "要知道此前 X2、X3两代的产品周期基本都是2年。" + }, + { + "start" : 165.63999999999999, + "speaker" : "speaker_1", + "end" : 174.34999999999999, + "text" : "另一边,饮食进一步强化产品和品牌营销,让消费者形成认知,全景就是 Instar 360的天下。" + }, + { + "start" : 174.94999999999999, + "speaker" : "speaker_1", + "end" : 187.75, + "text" : "今年2月以来影石开始不遗余力为产品造势,小到运动相机出了个手柄配件,大到发布新的全景相机 X5,通过广告投放加大了对目标消费者的市场渗透。" + }, + { + "start" : 188.739, + "speaker" : "speaker_1", + "end" : 199.84999999999999, + "text" : "雷锋网了解到,X5的广告营销基本覆盖了各个渠道的 KOL。" + }, + { + "start" : 188.84999999999999, + "speaker" : "speaker_1", + "end" : 194.21000000000001, + "text" : "坊间流传,今年 NST 三六零 x 五的广告预算比以往高出不少。" + }, + { + "start" : 201.21000000000001, + "speaker" : "speaker_1", + "end" : 208.72999999999999, + "text" : "凭借全新的产品,在大幅度的广告投流下,影石 X5发布初期就取得了比较可观的销量。" + }, + { + "start" : 209.28999999999999, + "speaker" : "speaker_1", + "end" : 212.09, + "text" : "大规模投放下,X5销量情况如何?" + }, + { + "start" : 212.50899999999999, + "speaker" : "speaker_1", + "end" : 223.02000000000001, + "text" : "饮食网罗了硬件3C 领域绝大多数的 KOL。" + }, + { + "start" : 212.53999999999999, + "speaker" : "speaker_1", + "end" : 215.30000000000001, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 215.81999999999999, + "speaker" : "speaker_1", + "end" : 219.34, + "text" : "至少目前来看,饮食的策略是有章法的。" + }, + { + "start" : 223.68000000000001, + "speaker" : "speaker_1", + "end" : 227.72, + "text" : "只要有新的 KOL 开始冒头,都会被饮食抢先签下。" + }, + { + "start" : 228.40000000000001, + "speaker" : "speaker_1", + "end" : 234.44, + "text" : "在长期重视营销的结果下,饮食逐渐形成了一套围绕 KOL 的营销方法论。" + }, + { + "start" : 235.41, + "speaker" : "speaker_1", + "end" : 240.80000000000001, + "text" : "而对面的 DGI 在营销上的态度始终模棱两可,时而强,时而弱。" + }, + { + "start" : 241.36000000000001, + "speaker" : "speaker_1", + "end" : 245.19999999999999, + "text" : "此前坊间有说法称营销曾经是 DGI 的盐碱地。" + }, + { + "start" : 245.78, + "speaker" : "speaker_1", + "end" : 255.46000000000001, + "text" : "公司不开展会,汪涛也不会在公众露面,市场他也不愿意投,品牌也不投,因为汪涛算不清楚这笔账的投入和产出比。" + }, + { + "start" : 255.83000000000001, + "speaker" : "speaker_1", + "end" : 257.02999999999997, + "text" : "算不清楚他就不投。" + }, + { + "start" : 257.91000000000003, + "speaker" : "speaker_1", + "end" : 265.67000000000002, + "text" : "王涛不愿意给 KOL 花钱,他觉得这些人什么都没干,躺着就赚了 DJI 的钱,谁都不能躺着赚我的钱。" + }, + { + "start" : 266.39999999999998, + "speaker" : "speaker_1", + "end" : 275.12, + "text" : "熟悉 DGI 的人士李阳向雷锋网透露,2020年以前,DGI 是比较重视 KOL 营销的,很多渠道的 KOL 都投了。" + }, + { + "start" : 275.92000000000002, + "speaker" : "speaker_1", + "end" : 279.14999999999998, + "text" : "谢佳走了之后这些合作项目就都停了。" + }, + { + "start" : 279.67000000000002, + "speaker" : "speaker_1", + "end" : 286.91000000000003, + "text" : "很长一段时间里,DGI 的市场团队一度是最没有存在感的部门,人手凋零,没几个人。" + }, + { + "start" : 287.68000000000001, + "speaker" : "speaker_1", + "end" : 298.43000000000001, + "text" : "对这些人来说,要想在汪涛那里拿到市场预算,就得向汪涛证明这些预算投了出去能得到多少钱的回报,这个问题没有人能回答出来。" + }, + { + "start" : 299.18000000000001, + "speaker" : "speaker_1", + "end" : 302.41000000000003, + "text" : "也因此,DJI 的市场人员阵亡率很高。" + }, + { + "start" : 303.00999999999999, + "speaker" : "speaker_1", + "end" : 309.29000000000002, + "text" : "某种程度上,DJI 不太重视营销,与它在无人机市场的强势领导地位有关。" + }, + { + "start" : 310.02999999999997, + "speaker" : "speaker_1", + "end" : 314.43000000000001, + "text" : "王涛认为,只要产品领导力在,营销就是可有可无的。" + }, + { + "start" : 314.75, + "speaker" : "speaker_1", + "end" : 319.58999999999997, + "text" : "但当 DGI 开始不断拓新品类,竞争对手的战力指数也更高时。" + }, + { + "start" : 320.13999999999999, + "speaker" : "speaker_1", + "end" : 329.22000000000003, + "text" : "几乎没有人能忽视营销的 buff 意识到威胁后,现在的 DGI 也一反常态,通过加大市场营销投入,穷追不舍。" + }, + { + "start" : 330.26999999999998, + "speaker" : "speaker_1", + "end" : 332.23000000000002, + "text" : "2024年火爆全网络的 pop" + } + ] + }, + "start_time" : 1750835827056, + "end_time" : 1750835868313, + "task_id" : "task_b0e404c5-cf03-4a80-973b-ba36585637c2" + } + ], + "file_id" : "file_3c57ce78-4860-4efb-8e2b-e394e9d5ea55" +} + + +type3: +{ + "status" : "SUCCESS", + "id" : "wf_6d3b16fc-1fd3-41ad-a822-50035761048b", + "owner_id" : "test-001", + "metadata_json" : { + + }, + "tasks" : [ + { + "task_type" : "audio_transcribe", + "status" : "SUCCESS", + "result" : { + "segments" : [ + { + "start" : 1.5700000000000001, + "speaker" : "speaker_1", + "end" : 2.3199999999999998, + "text" : "如何做产品?" + }, + { + "start" : 2.3999999999999999, + "speaker" : "speaker_1", + "end" : 3, + "text" : "怎么干?" + }, + { + "start" : 3.1600000000000001, + "speaker" : "speaker_1", + "end" : 6.7599999999999998, + "text" : "DJI 是 JK 去年与投资人聊的最多的话题。" + }, + { + "start" : 8.0690000000000008, + "speaker" : "speaker_1", + "end" : 10.898999999999999, + "text" : "直销中上市时创下了70倍 PE 的市值。" + }, + { + "start" : 11.179, + "speaker" : "speaker_1", + "end" : 16.818999999999999, + "text" : "6月18日,饮食市值继续大涨,逼近800亿元,资本市场再次一片狂欢。" + }, + { + "start" : 18.059999999999999, + "speaker" : "speaker_1", + "end" : 27.690000000000001, + "text" : "不同于其他公司上市后普发福利红包的热闹与喧嚣,影视公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目。" + }, + { + "start" : 28.23, + "speaker" : "speaker_1", + "end" : 34.299999999999997, + "text" : "该加班的加班,不同的是,所有人都因为饮食换了一种身份而备受瞩目。" + }, + { + "start" : 35.299999999999997, + "speaker" : "speaker_1", + "end" : 39.100000000000001, + "text" : "上市这件事情和结婚一样,意味着自己的义务变了。" + }, + { + "start" : 39.909999999999997, + "speaker" : "speaker_1", + "end" : 42.469999999999999, + "text" : "虽然兴奋,但是身上的担子更重了。" + }, + { + "start" : 43.189999999999998, + "speaker" : "speaker_1", + "end" : 51.229999999999997, + "text" : "JK 在采访里提到,雷锋网了解到,近两个月来,影视进行了一轮较大范围的组织架构调整。" + }, + { + "start" : 51.759999999999998, + "speaker" : "speaker_1", + "end" : 57.359999999999999, + "text" : "将多条产品线进行重新整合,多番调整下饮食有何变化?" + }, + { + "start" : 57.560000000000002, + "speaker" : "speaker_1", + "end" : 60.359999999999999, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 60.719999999999999, + "speaker" : "speaker_1", + "end" : 72.599999999999994, + "text" : "年初至今饮食的团队规模扩充了不少,调整的过程虽有些波折,但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化。" + }, + { + "start" : 73.090000000000003, + "speaker" : "speaker_1", + "end" : 80.969999999999999, + "text" : "从而去应对三家争霸,饮食今年压力最大,前有 DJI 后有追觅,都在布局全景相机。" + }, + { + "start" : 81.329999999999998, + "speaker" : "speaker_1", + "end" : 83.689999999999998, + "text" : "有一次 JK 语重心长地说。" + }, + { + "start" : 84.040000000000006, + "speaker" : "speaker_1", + "end" : 87.629999999999995, + "text" : "我们需要全面备战,一位饮食员工说道。" + }, + { + "start" : 88.269999999999996, + "speaker" : "speaker_1", + "end" : 93.629999999999995, + "text" : "赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难。" + }, + { + "start" : 94.040000000000006, + "speaker" : "speaker_1", + "end" : 95.510000000000005, + "text" : "而 IPO 只是一个分水岭。" + }, + { + "start" : 96.510000000000005, + "speaker" : "speaker_1", + "end" : 104.43000000000001, + "text" : "如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题。" + }, + { + "start" : 105.23999999999999, + "speaker" : "speaker_1", + "end" : 108.52, + "text" : "屋子里的大象来势汹汹,饮食怎么应对?" + }, + { + "start" : 109.23999999999999, + "speaker" : "speaker_1", + "end" : 114.2, + "text" : "饮食到底值不值70倍的 PE 未来是否能守得住自己的市场份额?" + }, + { + "start" : 114.92, + "speaker" : "speaker_1", + "end" : 116, + "text" : "竞争如此胶灼。" + }, + { + "start" : 116.59999999999999, + "speaker" : "speaker_1", + "end" : 118, + "text" : "管理层是什么思考呢?" + }, + { + "start" : 118.8, + "speaker" : "speaker_1", + "end" : 123.04000000000001, + "text" : "0 DJI 兵临城下,饮食如何应对?" + }, + { + "start" : 123.64, + "speaker" : "speaker_1", + "end" : 128.03999999999999, + "text" : "今年 JK 在年会上承认,在 DJI 面前他们确实还是弟弟。" + }, + { + "start" : 128.88, + "speaker" : "speaker_1", + "end" : 129.96000000000001, + "text" : "承认归承认。" + }, + { + "start" : 130.47, + "speaker" : "speaker_1", + "end" : 137.91, + "text" : "JK 也同时在内部放话,战术上重视,战略上升维,做好打硬仗、跑马拉松的准备。" + }, + { + "start" : 138.55000000000001, + "speaker" : "speaker_1", + "end" : 140.71000000000001, + "text" : "他认为就像人跑马拉松。" + }, + { + "start" : 141.11000000000001, + "speaker" : "speaker_1", + "end" : 144.13999999999999, + "text" : "那个半跑的人或领跑的人还是很重要的。" + }, + + { + "start" : 144.41999999999999, + "speaker" : "speaker_1", + "end" : 148.62, + "text" : "竞争对手给到你的启发远大于从你手上剥夺的东西。" + }, + { + "start" : 149.5, + "speaker" : "speaker_1", + "end" : 151.66, + "text" : "饮食备战的第一步是先发制人。" + }, + { + "start" : 153.08000000000001, + "speaker" : "speaker_1", + "end" : 159.80000000000001, + "text" : "Insta 3六0 x 五在4月抢先发布,这距离上一代产品 X4发布仅过去一年的时间。" + }, + { + "start" : 160.03999999999999, + "speaker" : "speaker_1", + "end" : 164.75999999999999, + "text" : "要知道此前 X2、X3两代的产品周期基本都是2年。" + }, + { + "start" : 165.63999999999999, + "speaker" : "speaker_1", + "end" : 174.34999999999999, + "text" : "另一边,饮食进一步强化产品和品牌营销,让消费者形成认知,全景就是 Instar 360的天下。" + }, + { + "start" : 174.94999999999999, + "speaker" : "speaker_1", + "end" : 187.75, + "text" : "今年2月以来影石开始不遗余力为产品造势,小到运动相机出了个手柄配件,大到发布新的全景相机 X5,通过广告投放加大了对目标消费者的市场渗透。" + }, + { + "start" : 188.739, + "speaker" : "speaker_1", + "end" : 199.84999999999999, + "text" : "雷锋网了解到,X5的广告营销基本覆盖了各个渠道的 KOL。" + }, + { + "start" : 188.84999999999999, + "speaker" : "speaker_1", + "end" : 194.21000000000001, + "text" : "坊间流传,今年 NST 三六零 x 五的广告预算比以往高出不少。" + }, + { + "start" : 201.21000000000001, + "speaker" : "speaker_1", + "end" : 208.72999999999999, + "text" : "凭借全新的产品,在大幅度的广告投流下,影石 X5发布初期就取得了比较可观的销量。" + }, + { + "start" : 209.28999999999999, + "speaker" : "speaker_1", + "end" : 212.09, + "text" : "大规模投放下,X5销量情况如何?" + }, + { + "start" : 212.50899999999999, + "speaker" : "speaker_1", + "end" : 223.02000000000001, + "text" : "饮食网罗了硬件3C 领域绝大多数的 KOL。" + }, + { + "start" : 212.53999999999999, + "speaker" : "speaker_1", + "end" : 215.30000000000001, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 215.81999999999999, + "speaker" : "speaker_1", + "end" : 219.34, + "text" : "至少目前来看,饮食的策略是有章法的。" + }, + { + "start" : 223.68000000000001, + "speaker" : "speaker_1", + "end" : 227.72, + "text" : "只要有新的 KOL 开始冒头,都会被饮食抢先签下。" + }, + { + "start" : 228.40000000000001, + "speaker" : "speaker_1", + "end" : 234.44, + "text" : "在长期重视营销的结果下,饮食逐渐形成了一套围绕 KOL 的营销方法论。" + }, + { + "start" : 235.41, + "speaker" : "speaker_1", + "end" : 240.80000000000001, + "text" : "而对面的 DGI 在营销上的态度始终模棱两可,时而强,时而弱。" + }, + { + "start" : 241.36000000000001, + "speaker" : "speaker_1", + "end" : 245.19999999999999, + "text" : "此前坊间有说法称营销曾经是 DGI 的盐碱地。" + }, + { + "start" : 245.78, + "speaker" : "speaker_1", + "end" : 255.46000000000001, + "text" : "公司不开展会,汪涛也不会在公众露面,市场他也不愿意投,品牌也不投,因为汪涛算不清楚这笔账的投入和产出比。" + }, + { + "start" : 255.83000000000001, + "speaker" : "speaker_1", + "end" : 257.02999999999997, + "text" : "算不清楚他就不投。" + }, + { + "start" : 257.91000000000003, + "speaker" : "speaker_1", + "end" : 265.67000000000002, + "text" : "王涛不愿意给 KOL 花钱,他觉得这些人什么都没干,躺着就赚了 DJI 的钱,谁都不能躺着赚我的钱。" + }, + { + "start" : 266.39999999999998, + "speaker" : "speaker_1", + "end" : 275.12, + "text" : "熟悉 DGI 的人士李阳向雷锋网透露,2020年以前,DGI 是比较重视 KOL 营销的,很多渠道的 KOL 都投了。" + }, + { + "start" : 275.92000000000002, + "speaker" : "speaker_1", + "end" : 279.14999999999998, + "text" : "谢佳走了之后这些合作项目就都停了。" + }, + { + "start" : 279.67000000000002, + "speaker" : "speaker_1", + "end" : 286.91000000000003, + "text" : "很长一段时间里,DGI 的市场团队一度是最没有存在感的部门,人手凋零,没几个人。" + }, + { + "start" : 287.68000000000001, + "speaker" : "speaker_1", + "end" : 298.43000000000001, + "text" : "对这些人来说,要想在汪涛那里拿到市场预算,就得向汪涛证明这些预算投了出去能得到多少钱的回报,这个问题没有人能回答出来。" + }, + { + "start" : 299.18000000000001, + "speaker" : "speaker_1", + "end" : 302.41000000000003, + "text" : "也因此,DJI 的市场人员阵亡率很高。" + }, + { + "start" : 303.00999999999999, + "speaker" : "speaker_1", + "end" : 309.29000000000002, + "text" : "某种程度上,DJI 不太重视营销,与它在无人机市场的强势领导地位有关。" + }, + { + "start" : 310.02999999999997, + "speaker" : "speaker_1", + "end" : 314.43000000000001, + "text" : "王涛认为,只要产品领导力在,营销就是可有可无的。" + }, + { + "start" : 314.75, + "speaker" : "speaker_1", + "end" : 319.58999999999997, + "text" : "但当 DGI 开始不断拓新品类,竞争对手的战力指数也更高时。" + }, + { + "start" : 320.13999999999999, + "speaker" : "speaker_1", + "end" : 329.22000000000003, + "text" : "几乎没有人能忽视营销的 buff 意识到威胁后,现在的 DGI 也一反常态,通过加大市场营销投入,穷追不舍。" + }, + { + "start" : 330.26999999999998, + "speaker" : "speaker_1", + "end" : 332.23000000000002, + "text" : "2024年火爆全网络的 pop" + } + ] + }, + "start_time" : 1750836108518, + "end_time" : 1750836149644, + "task_id" : "task_7e7d474a-22b1-49c7-bdb6-fc86cf25f68c" + }, + { + "task_type" : "ai_etl", + "status" : "SUCCESS", + "result" : { + "assessment_treatment_pairs" : [ + + ], + "appellation" : "客户", + "communication_feedback" : { + "highlight" : "无医美相关沟通内容,无法识别有效亮点。", + "suggestion" : "对话内容严重偏离主题,建议加强咨询师专业培训和流程管理。" + }, + "clinical_report" : "【接诊医生】\n无相关信息\n\n【接诊咨询师】\n无相关信息\n\n【客户信息】\n无相关信息\n\n【主诉检查】\n无相关信息\n\n【治疗方案】\n无相关信息\n\n【后续建议】\n1. 核实对话录音是否存在上传错误\n2. 重新培训咨询师掌握基础医美知识及对话引导技巧\n3. 建立咨询前问卷筛选机制,避免无效咨询占用资源", + "mapped" : { + + }, + "transcription" : { + "segments" : [ + { + "start" : 1.5700000000000001, + "speaker" : "咨询师", + "end" : 2.3199999999999998, + "index" : 1, + "text" : "如何做产品?" + }, + { + "start" : 2.3999999999999999, + "speaker" : "咨询师", + "end" : 3, + "index" : 2, + "text" : "怎么干?" + }, + { + "start" : 3.1600000000000001, + "speaker" : "咨询师", + "end" : 6.7599999999999998, + "index" : 3, + "text" : "DJI 是 JK 去年与投资人聊的最多的话题。" + }, + { + "start" : 8.0690000000000008, + "speaker" : "咨询师", + "end" : 10.898999999999999, + "index" : 4, + "text" : "直销中上市时创下了70倍 PE 的市值。" + }, + { + "start" : 11.179, + "speaker" : "咨询师", + "end" : 16.818999999999999, + "index" : 5, + "text" : "6月18日,饮食市值继续大涨,逼近800亿元,资本市场再次一片狂欢。" + }, + { + "start" : 18.059999999999999, + "speaker" : "咨询师", + "end" : 27.690000000000001, + "index" : 6, + "text" : "不同于其他公司上市后普发福利红包的热闹与喧嚣,影视公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目。" + }, + { + "start" : 28.23, + "speaker" : "咨询师", + "end" : 34.299999999999997, + "index" : 7, + "text" : "该加班的加班,不同的是,所有人都因为饮食换了一种身份而备受瞩目。" + }, + { + "start" : 35.299999999999997, + "speaker" : "咨询师", + "end" : 39.100000000000001, + "index" : 8, + "text" : "上市这件事情和结婚一样,意味着自己的义务变了。" + }, + { + "start" : 39.909999999999997, + "speaker" : "咨询师", + "end" : 42.469999999999999, + "index" : 9, + "text" : "虽然兴奋,但是身上的担子更重了。" + }, + { + "start" : 43.189999999999998, + "speaker" : "咨询师", + "end" : 51.229999999999997, + "index" : 10, + "text" : "JK 在采访里提到,雷锋网了解到,近两个月来,影视进行了一轮较大范围的组织架构调整。" + }, + { + "start" : 51.759999999999998, + "speaker" : "咨询师", + "end" : 57.359999999999999, + "index" : 11, + "text" : "将多条产品线进行重新整合,多番调整下饮食有何变化?" + }, + { + "start" : 57.560000000000002, + "speaker" : "咨询师", + "end" : 60.359999999999999, + "index" : 12, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 60.719999999999999, + "speaker" : "咨询师", + "end" : 72.599999999999994, + "index" : 13, + "text" : "年初至今饮食的团队规模扩充了不少,调整的过程虽有些波折,但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化。" + }, + { + "start" : 73.090000000000003, + "speaker" : "咨询师", + "end" : 80.969999999999999, + "index" : 14, + "text" : "从而去应对三家争霸,饮食今年压力最大,前有 DJI 后有追觅,都在布局全景相机。" + }, + { + "start" : 81.329999999999998, + "speaker" : "咨询师", + "end" : 83.689999999999998, + "index" : 15, + "text" : "有一次 JK 语重心长地说。" + }, + { + "start" : 84.040000000000006, + "speaker" : "咨询师", + "end" : 87.629999999999995, + "index" : 16, + "text" : "我们需要全面备战,一位饮食员工说道。" + }, + { + "start" : 88.269999999999996, + "speaker" : "咨询师", + "end" : 93.629999999999995, + "index" : 17, + "text" : "赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难。" + }, + { + "start" : 94.040000000000006, + "speaker" : "咨询师", + "end" : 95.510000000000005, + "index" : 18, + "text" : "而 IPO 只是一个分水岭。" + }, + { + "start" : 96.510000000000005, + "speaker" : "咨询师", + "end" : 104.43000000000001, + "index" : 19, + "text" : "如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题。" + }, + { + "start" : 105.23999999999999, + "speaker" : "咨询师", + "end" : 108.52, + "index" : 20, + "text" : "屋子里的大象来势汹汹,饮食怎么应对?" + }, + { + "start" : 109.23999999999999, + "speaker" : "咨询师", + "end" : 114.2, + "index" : 21, + "text" : "饮食到底值不值70倍的 PE 未来是否能守得住自己的市场份额?" + }, + { + "start" : 114.92, + "speaker" : "咨询师", + "end" : 116, + "index" : 22, + "text" : "竞争如此胶灼。" + }, + { + "start" : 116.59999999999999, + "speaker" : "咨询师", + "end" : 118, + "index" : 23, + "text" : "管理层是什么思考呢?" + }, + { + "start" : 118.8, + "speaker" : "咨询师", + "end" : 123.04000000000001, + "index" : 24, + "text" : "0 DJI 兵临城下,饮食如何应对?" + }, + { + "start" : 123.64, + "speaker" : "咨询师", + "end" : 128.03999999999999, + "index" : 25, + "text" : "今年 JK 在年会上承认,在 DJI 面前他们确实还是弟弟。" + }, + { + "start" : 128.88, + "speaker" : "咨询师", + "end" : 129.96000000000001, + "index" : 26, + "text" : "承认归承认。" + }, + { + "start" : 130.47, + "speaker" : "咨询师", + "end" : 137.91, + "index" : 27, + "text" : "JK 也同时在内部放话,战术上重视,战略上升维,做好打硬仗、跑马拉松的准备。" + }, + { + "start" : 138.55000000000001, + "speaker" : "咨询师", + "end" : 140.71000000000001, + "index" : 28, + "text" : "他认为就像人跑马拉松。" + }, + { + "start" : 141.11000000000001, + "speaker" : "咨询师", + "end" : 144.13999999999999, + "index" : 29, + "text" : "那个半跑的人或领跑的人还是很重要的。" + }, + { + "start" : 144.41999999999999, + "speaker" : "咨询师", + "end" : 148.62, + "index" : 30, + "text" : "竞争对手给到你的启发远大于从你手上剥夺的东西。" + }, + { + "start" : 149.5, + "speaker" : "咨询师", + "end" : 151.66, + "index" : 31, + "text" : "饮食备战的第一步是先发制人。" + }, + { + "start" : 153.08000000000001, + "speaker" : "咨询师", + "end" : 159.80000000000001, + "index" : 32, + "text" : "Insta 3六0 x 五在4月抢先发布,这距离上一代产品 X4发布仅过去一年的时间。" + }, + { + "start" : 160.03999999999999, + "speaker" : "咨询师", + "end" : 164.75999999999999, + "index" : 33, + "text" : "要知道此前 X2、X3两代的产品周期基本都是2年。" + }, + { + "start" : 165.63999999999999, + "speaker" : "咨询师", + "end" : 174.34999999999999, + "index" : 34, + "text" : "另一边,饮食进一步强化产品和品牌营销,让消费者形成认知,全景就是 Instar 360的天下。" + }, + { + "start" : 174.94999999999999, + "speaker" : "咨询师", + "end" : 187.75, + "index" : 35, + "text" : "今年2月以来影石开始不遗余力为产品造势,小到运动相机出了个手柄配件,大到发布新的全景相机 X5,通过广告投放加大了对目标消费者的市场渗透。" + }, + { + "start" : 188.739, + "speaker" : "咨询师", + "end" : 199.84999999999999, + "index" : 36, + "text" : "雷锋网了解到,X5的广告营销基本覆盖了各个渠道的 KOL。" + }, + { + "start" : 188.84999999999999, + "speaker" : "咨询师", + "end" : 194.21000000000001, + "index" : 37, + "text" : "坊间流传,今年 NST 三六零 x 五的广告预算比以往高出不少。" + }, + { + "start" : 201.21000000000001, + "speaker" : "咨询师", + "end" : 208.72999999999999, + "index" : 38, + "text" : "凭借全新的产品,在大幅度的广告投流下,影石 X5发布初期就取得了比较可观的销量。" + }, + { + "start" : 209.28999999999999, + "speaker" : "咨询师", + "end" : 212.09, + "index" : 39, + "text" : "大规模投放下,X5销量情况如何?" + }, + { + "start" : 212.50899999999999, + "speaker" : "咨询师", + "end" : 223.02000000000001, + "index" : 40, + "text" : "饮食网罗了硬件3C 领域绝大多数的 KOL。" + }, + { + "start" : 212.53999999999999, + "speaker" : "咨询师", + "end" : 215.30000000000001, + "index" : 41, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 215.81999999999999, + "speaker" : "咨询师", + "end" : 219.34, + "index" : 42, + + "text" : "至少目前来看,饮食的策略是有章法的。" + }, + { + "start" : 223.68000000000001, + "speaker" : "咨询师", + "end" : 227.72, + "index" : 43, + "text" : "只要有新的 KOL 开始冒头,都会被饮食抢先签下。" + }, + { + "start" : 228.40000000000001, + "speaker" : "咨询师", + "end" : 234.44, + "index" : 44, + "text" : "在长期重视营销的结果下,饮食逐渐形成了一套围绕 KOL 的营销方法论。" + }, + { + "start" : 235.41, + "speaker" : "咨询师", + "end" : 240.80000000000001, + "index" : 45, + "text" : "而对面的 DGI 在营销上的态度始终模棱两可,时而强,时而弱。" + }, + { + "start" : 241.36000000000001, + "speaker" : "咨询师", + "end" : 245.19999999999999, + "index" : 46, + "text" : "此前坊间有说法称营销曾经是 DGI 的盐碱地。" + }, + { + "start" : 245.78, + "speaker" : "咨询师", + "end" : 255.46000000000001, + "index" : 47, + "text" : "公司不开展会,汪涛也不会在公众露面,市场他也不愿意投,品牌也不投,因为汪涛算不清楚这笔账的投入和产出比。" + }, + { + "start" : 255.83000000000001, + "speaker" : "咨询师", + "end" : 257.02999999999997, + "index" : 48, + "text" : "算不清楚他就不投。" + }, + { + "start" : 257.91000000000003, + "speaker" : "咨询师", + "end" : 265.67000000000002, + "index" : 49, + "text" : "王涛不愿意给 KOL 花钱,他觉得这些人什么都没干,躺着就赚了 DJI 的钱,谁都不能躺着赚我的钱。" + }, + { + "start" : 266.39999999999998, + "speaker" : "咨询师", + "end" : 275.12, + "index" : 50, + "text" : "熟悉 DGI 的人士李阳向雷锋网透露,2020年以前,DGI 是比较重视 KOL 营销的,很多渠道的 KOL 都投了。" + }, + { + "start" : 275.92000000000002, + "speaker" : "咨询师", + "end" : 279.14999999999998, + "index" : 51, + "text" : "谢佳走了之后这些合作项目就都停了。" + }, + { + "start" : 279.67000000000002, + "speaker" : "咨询师", + "end" : 286.91000000000003, + "index" : 52, + "text" : "很长一段时间里,DGI 的市场团队一度是最没有存在感的部门,人手凋零,没几个人。" + }, + { + "start" : 287.68000000000001, + "speaker" : "咨询师", + "end" : 298.43000000000001, + "index" : 53, + "text" : "对这些人来说,要想在汪涛那里拿到市场预算,就得向汪涛证明这些预算投了出去能得到多少钱的回报,这个问题没有人能回答出来。" + }, + { + "start" : 299.18000000000001, + "speaker" : "咨询师", + "end" : 302.41000000000003, + "index" : 54, + "text" : "也因此,DJI 的市场人员阵亡率很高。" + }, + { + "start" : 303.00999999999999, + "speaker" : "咨询师", + "end" : 309.29000000000002, + "index" : 55, + "text" : "某种程度上,DJI 不太重视营销,与它在无人机市场的强势领导地位有关。" + }, + { + "start" : 310.02999999999997, + "speaker" : "咨询师", + "end" : 314.43000000000001, + "index" : 56, + "text" : "王涛认为,只要产品领导力在,营销就是可有可无的。" + }, + { + "start" : 314.75, + "speaker" : "咨询师", + "end" : 319.58999999999997, + "index" : 57, + "text" : "但当 DGI 开始不断拓新品类,竞争对手的战力指数也更高时。" + }, + { + "start" : 320.13999999999999, + "speaker" : "咨询师", + "end" : 329.22000000000003, + "index" : 58, + "text" : "几乎没有人能忽视营销的 buff 意识到威胁后,现在的 DGI 也一反常态,通过加大市场营销投入,穷追不舍。" + }, + { + "start" : 330.26999999999998, + "speaker" : "咨询师", + "end" : 332.23000000000002, + "index" : 59, + "text" : "2024年火爆全网络的 pop" + } + ] + }, + "summary" : "对话内容与医美咨询无关,咨询师全程未提及任何医美项目或服务。", + "customer_projects" : [ + + ], + "unmapped" : [ + + ], + "deal_analysis" : { + "status" : "未成交", + "intention" : { + "description" : "对话内容与医美咨询无关,咨询师全程未提及任何医美项目或服务,客户也未表达任何美容需求或兴趣。", + "rating" : "低" + }, + "deal_reason" : { + "description" : "对话中未发现任何成交驱动因素。", + "reason" : [ + + ] + }, + "no_deal_reason" : { + "description" : "对话内容完全偏离医美主题,咨询师未进行任何有效咨询引导,客户也未表达任何相关需求。", + "suggestion" : "1. 核实对话录音是否存在上传错误\n2. 重新培训咨询师掌握基础医美知识及对话引导技巧\n3. 建立咨询前问卷筛选机制,避免无效咨询占用资源", + "reason" : [ + "需求不明确" + ] + } + }, + "doctor_projects" : [ + + ], + "content" : "如何做产品? 怎么干? DJI 是 JK 去年与投资人聊的最多的话题。 直销中上市时创下了70倍 PE 的市值。 6月18日,饮食市值继续大涨,逼近800亿元,资本市场再次一片狂欢。 不同于其他公司上市后普发福利红包的热闹与喧嚣,影视公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目。 该加班的加班,不同的是,所有人都因为饮食换了一种身份而备受瞩目。 上市这件事情和结婚一样,意味着自己的义务变了。 虽然兴奋,但是身上的担子更重了。 JK 在采访里提到,雷锋网了解到,近两个月来,影视进行了一轮较大范围的组织架构调整。 将多条产品线进行重新整合,多番调整下饮食有何变化? 欢迎添加微信 QQ501一起交流。 年初至今饮食的团队规模扩充了不少,调整的过程虽有些波折,但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化。 从而去应对三家争霸,饮食今年压力最大,前有 DJI 后有追觅,都在布局全景相机。 有一次 JK 语重心长地说。 我们需要全面备战,一位饮食员工说道。 赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难。 而 IPO 只是一个分水岭。 如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题。 屋子里的大象来势汹汹,饮食怎么应对? 饮食到底值不值70倍的 PE 未来是否能守得住自己的市场份额? 竞争如此胶灼。 管理层是什么思考呢? 0 DJI 兵临城下,饮食如何应对? 今年 JK 在年会上承认,在 DJI 面前他们确实还是弟弟。 承认归承认。 JK 也同时在内部放话,战术上重视,战略上升维,做好打硬仗、跑马拉松的准备。 他认为就像人跑马拉松。 那个半跑的人或领跑的人还是很重要的。 竞争对手给到你的启发远大于从你手上剥夺的东西。 饮食备战的第一步是先发制人。 Insta 3六0 x 五在4月抢先发布,这距离上一代产品 X4发布仅过去一年的时间。 要知道此前 X2、X3两代的产品周期基本都是2年。 另一边,饮食进一步强化产品和品牌营销,让消费者形成认知,全景就是 Instar 360的天下。 今年2月以来影石开始不遗余力为产品造势,小到运动相机出了个手柄配件,大到发布新的全景相机 X5,通过广告投放加大了对目标消费者的市场渗透。 雷锋网了解到,X5的广告营销基本覆盖了各个渠道的 KOL。 坊间流传,今年 NST 三六零 x 五的广告预算比以往高出不少。 凭借全新的产品,在大幅度的广告投流下,影石 X5发布初期就取得了比较可观的销量。 大规模投放下,X5销量情况如何? 饮食网罗了硬件3C 领域绝大多数的 KOL。 欢迎添加微信 QQ501一起交流。 至少目前来看,饮食的策略是有章法的。 只要有新的 KOL 开始冒头,都会被饮食抢先签下。 在长期重视营销的结果下,饮食逐渐形成了一套围绕 KOL 的营销方法论。 而对面的 DGI 在营销上的态度始终模棱两可,时而强,时而弱。 此前坊间有说法称营销曾经是 DGI 的盐碱地。 公司不开展会,汪涛也不会在公众露面,市场他也不愿意投,品牌也不投,因为汪涛算不清楚这笔账的投入和产出比。 算不清楚他就不投。 王涛不愿意给 KOL 花钱,他觉得这些人什么都没干,躺着就赚了 DJI 的钱,谁都不能躺着赚我的钱。 熟悉 DGI 的人士李阳向雷锋网透露,2020年以前,DGI 是比较重视 KOL 营销的,很多渠道的 KOL 都投了。 谢佳走了之后这些合作项目就都停了。 很长一段时间里,DGI 的市场团队一度是最没有存在感的部门,人手凋零,没几个人。 对这些人来说,要想在汪涛那里拿到市场预算,就得向汪涛证明这些预算投了出去能得到多少钱的回报,这个问题没有人能回答出来。 也因此,DJI 的市场人员阵亡率很高。 某种程度上,DJI 不太重视营销,与它在无人机市场的强势领导地位有关。 王涛认为,只要产品领导力在,营销就是可有可无的。 但当 DGI 开始不断拓新品类,竞争对手的战力指数也更高时。 几乎没有人能忽视营销的 buff 意识到威胁后,现在的 DGI 也一反常态,通过加大市场营销投入,穷追不舍。 2024年火爆全网络的 pop" + }, + "start_time" : 1750836151869, + "end_time" : 1750836175418, + "task_id" : "task_7449d414-91cf-48c8-a6aa-be1691012141" + } + ], + "file_id" : "file_3c57ce78-4860-4efb-8e2b-e394e9d5ea55" +} + diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/Info.plist b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/Info.plist new file mode 100644 index 0000000..a4666c7 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/Info.plist @@ -0,0 +1,27 @@ + + + + + AvailableLibraries + + + BinaryPath + PlaudWiFiSDK.framework/PlaudWiFiSDK + LibraryIdentifier + ios-arm64 + LibraryPath + PlaudWiFiSDK.framework + SupportedArchitectures + + arm64 + + SupportedPlatform + ios + + + CFBundlePackageType + XFWK + XCFrameworkFormatVersion + 1.0 + + diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/JXWebSocketServer.h b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/JXWebSocketServer.h new file mode 100644 index 0000000..52c571b --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/JXWebSocketServer.h @@ -0,0 +1,44 @@ +// +// JXWebSocketServer.h +// PenBleSDK +// +// Created by 天诺泰 on 2019/12/13. +// Copyright © 2019 天诺泰. All rights reserved. +// + +#import + + +NS_ASSUME_NONNULL_BEGIN + +@protocol JXWebSocketServerDelegate + +- (void)serverDidStart; +- (void)serverDidFailWithError:(NSError *)error; +- (void)serverDidStop; + +- (void)clientDidOpen; +- (void)clientDidReceiveText:(NSString *)text; +- (void)clientDidReceiveData:(NSData *)data; +- (void)clientDidFailWithError:(NSError *)error; +- (void)clientDidCloseWithCode:(NSInteger)code reason:(NSString *)reason wasClean:(BOOL)wasClean; + +@end + +@interface JXWebSocketServer : NSObject + +#pragma mark - Properties + +@property (nonatomic, weak) id delegate; + +#pragma mark - Actions + +- (void)startListen:(NSInteger)port; +- (void)sendText:(NSString *)text; +- (void)sendData:(NSData *)data; +- (void)closeClient; +- (void)close; + +@end + +NS_ASSUME_NONNULL_END diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK-Swift.h b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK-Swift.h new file mode 100644 index 0000000..6413abc --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK-Swift.h @@ -0,0 +1,587 @@ +#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 PLAUDWIFISDK_SWIFT_H +#define PLAUDWIFISDK_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 Dispatch; +@import Foundation; +@import ObjectiveC; +#endif + +#import + +#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="PlaudWiFiSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) +@class BleDevice; + +/// 一个辅助工具类,方便判断是否连接着WiFi或蓝牙,以及获取BleDevice,调用一些共有的方法 +SWIFT_CLASS("_TtC12PlaudWiFiSDK5Agent") +@interface Agent : NSObject +/// 单例 +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Agent * _Nonnull shared;) ++ (Agent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// 是否连接着设备(WiFi或者蓝牙) +- (BOOL)isDeviceConnect SWIFT_WARN_UNUSED_RESULT; +/// 如果有一个连着,获取连着的设备信息 +- (BleDevice * _Nullable)bleDevice SWIFT_WARN_UNUSED_RESULT; +/// 获取文件列表 +/// \param uid 命令id,建议传时间戳 +/// +/// \param sessionId 起始文件id +/// +/// \param single 是否仅获取当前文件信息,默认是否 +/// +- (void)getFileList:(NSInteger)uid :(NSInteger)sessionId :(BOOL)single; +/// 同步文件 +/// \param sessionId 文件id +/// +/// \param start 起始偏移量(字节) +/// +/// \param end 结束偏移量(字节) +/// +/// \param decode 是否同时解码 +/// +/// \param scene 场景,WiFi才有的参数,默认值1就好 +/// +- (void)syncFile:(NSInteger)sessionId :(NSInteger)start :(NSInteger)end :(BOOL)decode :(NSInteger)scene; +/// 停止文件同步 +/// \param sessionId 文件id,蓝牙状态下不需要 +/// +/// \param scene 场景,WiFi才有的参数,默认值就好 +/// +- (void)stopSyncFile:(NSInteger)sessionId :(NSInteger)scene; +/// 删除文件 +/// \param sessionId 文件id +/// +/// \param scene 场景,WiFi才有的参数,默认值就好 +/// +- (void)deleteFile:(NSInteger)sessionId :(NSInteger)scene; +/// 正在下载的sessionId(如果有的话)或者正在录音的sessionId(如果正在录音的话) +- (NSInteger)sessionId SWIFT_WARN_UNUSED_RESULT; +/// 是否正在下载 +- (BOOL)isDownloading SWIFT_WARN_UNUSED_RESULT; +/// 是否正在录音 +- (BOOL)isRecording SWIFT_WARN_UNUSED_RESULT; +@end + +@protocol WiFiAgentProtocol; +@class NSString; + +/// 需要打开Access WiFi Information和Hotspot Configuration +SWIFT_CLASS("_TtC12PlaudWiFiSDK9WiFiAgent") +@interface WiFiAgent : NSObject +/// 单例 +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) WiFiAgent * _Nonnull shared;) ++ (WiFiAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +/// 用于主动结束WiFi重连(调用connectWiFi会设置为true,主动设置为false后不会继续重连,) +@property (nonatomic) BOOL connectLoop; +/// 当前同步(下载)文件的sessionId +@property (nonatomic, readonly) NSInteger sessionId; +/// 是否正在同步(下载)文件 +@property (nonatomic, readonly) BOOL isDownloading; +/// 代理 +@property (nonatomic, weak) id _Nullable delegate; +/// 命令回调线程,默认是主线程 +@property (nonatomic, strong) dispatch_queue_t _Nonnull cmdDelegateQueue; +/// 设备信息需要从蓝牙模块传递过来 +/// 在蓝牙回调bleWiFiOpen的时候赋值:WiFiAgent.shared.bleDevice = BleAgent.shared.bleDevice +@property (nonatomic, strong) BleDevice * _Nullable bleDevice; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// 打开 release 下调试日志,方便追踪问题 +- (void)openReleaseLog:(BOOL)opened :(void (^ _Nullable)(NSString * _Nonnull))backBlock; +/// 打开sdk的调试日志,或者回调日志 +- (void)openLog:(BOOL)opened :(void (^ _Nullable)(NSString * _Nonnull))backBlock; +/// iOS 11.0以下使用该方法,会循环检查是否已连接到指定WiFi直到超时 +/// \param ssid WiFi名称 +/// +/// \param overtimeSec 超时时间,默认30秒 +/// +- (void)listenPort:(NSString * _Nonnull)ssid :(NSInteger)overtimeSec; +/// 通过WiFi名称和密码连接到指定WiFi +/// iOS 11.0及以上用这个方法直连WiFi,之前的版本需要弹窗引导用户到设置里面手动连接 +/// \param ssid WiFi名称 +/// +/// \param passphrase 密码 +/// +/// \param overtimeSec 超时时间,默认60秒 +/// +- (void)connectWifi:(NSString * _Nonnull)ssid :(NSString * _Nonnull)passphrase :(NSInteger)overtimeSec :(BOOL)needRetry SWIFT_AVAILABILITY(ios,introduced=11.0); +/// 取消轮询连接 wifi +- (void)cancelConnectWifi; +/// 清理所有WiFi配置缓存 +- (void)clearAllWiFiConfigurations SWIFT_AVAILABILITY(ios,introduced=11.0); +/// 清理所有WiFi配置缓存(兼容iOS 11.0以下版本) +- (void)clearAllWiFiConfigurationsCompat; +/// 断开连接 +- (void)disconnect; +@end + + +@interface WiFiAgent (SWIFT_EXTENSION(PlaudWiFiSDK)) +/// 获取当前连接的WiFi名称 +/// app需要添加Access WiFi Information权限(ios 12.0以后) +- (NSString * _Nullable)getCurrentWiFiName SWIFT_WARN_UNUSED_RESULT; +/// 方法4:带重试机制的WiFi名称获取 +- (NSString * _Nullable)getCurrentWiFiNameWithRetryWithMaxRetries:(NSInteger)maxRetries delay:(NSTimeInterval)delay SWIFT_WARN_UNUSED_RESULT; +@end + +@class NSData; + +@interface WiFiAgent (SWIFT_EXTENSION(PlaudWiFiSDK)) +- (void)serverDidStart; +- (void)serverDidFailWithError:(NSError * _Nonnull)error; +- (void)serverDidStop; +- (void)clientDidOpen; +- (void)clientDidReceiveText:(NSString * _Nonnull)text; +- (void)clientDidReceiveData:(NSData * _Nonnull)data; +- (void)clientDidFailWithError:(NSError * _Nonnull)error; +- (void)clientDidCloseWithCode:(NSInteger)code reason:(NSString * _Nonnull)reason wasClean:(BOOL)wasClean; +@end + + +@interface WiFiAgent (SWIFT_EXTENSION(PlaudWiFiSDK)) +/// 是否已成功建立WebSocket连接(app可以发送请求的前提) +- (BOOL)isWebSocketConnected SWIFT_WARN_UNUSED_RESULT; +/// 速率测试(cmd=100) +/// \param onOff 开始或结束 +/// +/// \param packSize 测试包大小 +/// +- (void)appWiFiRate:(BOOL)onOff :(NSInteger)packSize; +/// 删除文件(cmd=14) +/// \param sessionId 录音id +/// +/// \param scene 场景,默认1 +/// +- (void)appDeleteFile:(NSInteger)sessionId :(NSInteger)scene; +/// 延长WiFi退出时间(cmd=16) +- (void)appExtendWifiExitTime; +/// 停止文件同步(cmd=15) +/// \param sessionId 录音id +/// +/// \param scene 场景,默认1 +/// +- (void)appStopSyncFile:(NSInteger)sessionId :(NSInteger)scene; +/// 文件同步(cmd=12) +/// \param sessionId 录音id +/// +/// \param start 起始位置(是文件偏移量,不是时间) +/// +/// \param end 结束位置(默认0,到文件结束) +/// +/// \param scene 录音场景,默认1 +/// +- (void)appSyncFile:(NSInteger)sessionId :(NSInteger)start :(NSInteger)end :(NSInteger)scene; +/// 获取文件列表(app发起 cmd=11) +/// \param uid 请求的uid,新的请求会自然覆盖老的请求 +/// +/// \param sessionId 起始sessionId +/// +/// \param single 是否仅获取当前文件信息,默认是否, +/// +- (void)appGetFileList:(NSInteger)uid :(NSInteger)sessionId :(BOOL)single; +- (void)startPushOTA:(NSInteger)uid :(NSInteger)fileSize crc:(NSInteger)crc :(NSInteger)toVersion; +- (void)sendFilePackToPenWithType:(NSInteger)type start:(int32_t)start len:(int32_t)len last:(BOOL)last uid:(int32_t)uid binData:(NSData * _Nullable)binData; +@end + + +@class BleFile; + +SWIFT_PROTOCOL("_TtP12PlaudWiFiSDK17WiFiAgentProtocol_") +@protocol WiFiAgentProtocol +/// 通用错误 +/// \param cmd 错误指令 +/// +/// \param status 错误码 +/// +- (void)wifiCommonErr:(NSInteger)cmd :(NSInteger)status; +/// 握手结果 +/// \param status 0 成功,其他失败 +/// +- (void)wifiHandshake:(NSInteger)status; +/// 电池电量和电池电压 +/// \param power 电池电量,百分比 +/// +/// \param voltage 电池电压,mv +/// +- (void)wifiPower:(NSInteger)power :(NSInteger)voltage; +/// 获取录音列表失败 +/// \param status 错误码 +/// +- (void)wifiFileListFail:(NSInteger)status; +/// 获取录音列表 +/// \param files 录音列表 +/// +- (void)wifiFileList:(NSArray * _Nonnull)files; +/// 文件同步–文件状态 +/// \param sessionId 录音id +/// +/// \param status 状态 +/// +- (void)wifiSyncFile:(NSInteger)sessionId :(NSInteger)status; +/// 文件同步–文件数据 +/// \param sessionId 录音id +/// +/// \param offset 文件偏移量(字节) +/// +/// \param count 文件长度(字节) +/// +/// \param binData 数据 +/// +- (void)wifiSyncFileData:(NSInteger)sessionId :(NSInteger)offset :(NSInteger)count :(NSData * _Nonnull)binData; +/// 一个文件下载完了 +- (void)wifiDataComplete; +/// 文件同步停止 +/// \param status 状态 0 成功 +/// +- (void)wifiSyncFileStop:(NSInteger)status; +/// 文件删除结果 +/// \param sessionId 录音id +/// +/// \param status 删除结果 0 成功,>0 失败原因 +/// +- (void)wifiFileDelete:(NSInteger)sessionId :(NSInteger)status; +/// 客户端异常断开,等待重连 +/// 请设置 BleAgent.shared.setWiFiState(false) +- (void)wifiClientFail; +/// WiFi关闭通知 +/// \param status 状态 -1 是 didFailWithError; -2 是超时未连接; -3 NEHotspotConfigurationManager直连异常 +/// +- (void)wifiClose:(NSInteger)status; +/// 速率测试失败 +/// \param status 错误码 +/// +- (void)wifiRateFail:(NSInteger)status; +/// 速率测试 +/// \param instantRate 瞬时速率 +/// +/// \param averageRate 平均速率 +/// +/// \param lossRate 丢包率 +/// +- (void)wifiRate:(NSInteger)instantRate :(NSInteger)averageRate :(double)lossRate; +/// 获取笔端日志失败 +/// \param status 错误码 +/// +- (void)wifiLogsFail:(NSInteger)status; +/// 笔端日志 +/// \param logData 日志数据 +/// +- (void)wifiLogs:(NSData * _Nullable)logData; +/// 笔端发送tips给app +/// \param tips 0 无提示 1 笔端录音键按下 +/// +- (void)wifiTips:(NSInteger)tips; +- (void)penRequestOTADataWithStart:(NSInteger)start end:(NSInteger)end payloadSize:(NSInteger)payloadSize uid:(NSInteger)uid sendRatePPS:(NSInteger)sendRatePPS; +- (void)wifiOTAStatus:(NSInteger)status :(NSInteger)uid; +@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/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK.h b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK.h new file mode 100644 index 0000000..6cf2bd6 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK.h @@ -0,0 +1,23 @@ +// +// PlaudWiFiSDK.h +// PlaudWiFiSDK +// +// Copyright © 2025 NiceBuild. All rights reserved. +// + +#import + +//! Project version number for PlaudWiFiSDK. +FOUNDATION_EXPORT double PlaudWiFiSDKVersionNumber; + +//! Project version string for PlaudWiFiSDK. +FOUNDATION_EXPORT const unsigned char PlaudWiFiSDKVersionString[]; + +// ObjC types from the embedded PenWiFiSDK static library +#import + +// PlaudWiFiSDK-Swift.h is auto-generated by Xcode (all Swift @objc types are +// compiled directly into this framework — no separate PenWiFiSDK module needed). +#if __has_include() +#import +#endif diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Info.plist b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Info.plist new file mode 100644 index 0000000..151731a --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Info.plist @@ -0,0 +1,55 @@ + + + + + BuildMachineOSBuild + 24G90 + CFBundleDevelopmentRegion + en + CFBundleExecutable + PlaudWiFiSDK + CFBundleIdentifier + com.plaud.sdk.PlaudWiFiSDK + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + PlaudWiFiSDK + 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/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo new file mode 100644 index 0000000..46e9a1f Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.abi.json b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..cde8b0b --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,4684 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PenBleSDK", + "printedName": "PenBleSDK", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "TypeDecl", + "name": "Agent", + "printedName": "Agent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "Agent", + "printedName": "PlaudWiFiSDK.Agent", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(cpy)shared", + "mangledName": "$s12PlaudWiFiSDK5AgentC6sharedACvpZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Agent", + "printedName": "PlaudWiFiSDK.Agent", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(cm)shared", + "mangledName": "$s12PlaudWiFiSDK5AgentC6sharedACvgZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isDeviceConnect", + "printedName": "isDeviceConnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)isDeviceConnect", + "mangledName": "$s12PlaudWiFiSDK5AgentC15isDeviceConnectSbyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDevice", + "printedName": "bleDevice()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudBleSDK.BleDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleDevice", + "printedName": "PlaudBleSDK.BleDevice", + "usr": "c:@M@PenBleSDK@objc(cs)BleDevice" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)bleDevice", + "mangledName": "$s12PlaudWiFiSDK5AgentC9bleDevice0a3BleD00hG0CSgyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFileList", + "printedName": "getFileList(_:_:_:)", + "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@PlaudWiFiSDK@objc(cs)Agent(im)getFileList:::", + "mangledName": "$s12PlaudWiFiSDK5AgentC11getFileListyySi_SiSbtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "syncFile", + "printedName": "syncFile(_:_:_:_:_:)", + "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", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)syncFile:::::", + "mangledName": "$s12PlaudWiFiSDK5AgentC8syncFileyySi_S2iSbSitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSyncFile", + "printedName": "stopSyncFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)stopSyncFile::", + "mangledName": "$s12PlaudWiFiSDK5AgentC12stopSyncFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteFile", + "printedName": "deleteFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)deleteFile::", + "mangledName": "$s12PlaudWiFiSDK5AgentC10deleteFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sessionId", + "printedName": "sessionId()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)sessionId", + "mangledName": "$s12PlaudWiFiSDK5AgentC9sessionIdSiyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDownloading", + "printedName": "isDownloading()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)isDownloading", + "mangledName": "$s12PlaudWiFiSDK5AgentC13isDownloadingSbyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRecording", + "printedName": "isRecording()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)isRecording", + "mangledName": "$s12PlaudWiFiSDK5AgentC11isRecordingSbyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent", + "mangledName": "$s12PlaudWiFiSDK5AgentC", + "moduleName": "PlaudWiFiSDK", + "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": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "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": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO7unknownyA2EmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO7unknownyA2EmF", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Var", + "name": "notReachable", + "printedName": "notReachable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO12notReachableyA2EmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO12notReachableyA2EmF", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Var", + "name": "reachable", + "printedName": "reachable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> (PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType) -> PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType) -> PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + }, + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO9reachableyAeC14ConnectionTypeOcAEmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO9reachableyAeC14ConnectionTypeOcAEmF", + "moduleName": "PlaudWiFiSDK" + } + ], + "declKind": "Enum", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO", + "moduleName": "PlaudWiFiSDK", + "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": "(PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType.Type) -> PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO010ethernetOrbC0yA2EmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO010ethernetOrbC0yA2EmF", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Var", + "name": "wwan", + "printedName": "wwan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType.Type) -> PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO2eeoiySbAE_AEtFZ", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO2eeoiySbAE_AEtFZ", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivp", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC11isReachableSbvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC11isReachableSbvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC11isReachableSbvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC11isReachableSbvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC023isReachableOnEthernetOrbC0Sbvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC023isReachableOnEthernetOrbC0Sbvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC023isReachableOnEthernetOrbC0Sbvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC023isReachableOnEthernetOrbC0Sbvg", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "networkReachabilityStatus", + "printedName": "networkReachabilityStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC07networkF6StatusAC0efI0Ovp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC07networkF6StatusAC0efI0Ovp", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC07networkF6StatusAC0efI0Ovg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC07networkF6StatusAC0efI0Ovg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvs", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvM", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvM", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "listener", + "printedName": "listener", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvp", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvs", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvM", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvM", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkF5FlagsVSgvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkF5FlagsVSgvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkF5FlagsVSgvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkF5FlagsVSgvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvs", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0VvM", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0VvM", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(host:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager?", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityManager", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC4hostACSgSS_tcfc", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC4hostACSgSS_tcfc", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager?", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityManager", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerCACSgycfc", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerCACSgycfc", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC14startListeningSbyF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14startListeningSbyF", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopListening", + "printedName": "stopListening()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC13stopListeningyyF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13stopListeningyyF", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC", + "moduleName": "PlaudWiFiSDK", + "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": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + }, + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK2eeoiySbAA26NetworkReachabilityManagerC0fG6StatusO_AFtF", + "mangledName": "$s12PlaudWiFiSDK2eeoiySbAA26NetworkReachabilityManagerC0fG6StatusO_AFtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "SystemConfiguration.CaptiveNetwork", + "printedName": "SystemConfiguration.CaptiveNetwork", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "NetworkExtension", + "printedName": "NetworkExtension", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "CoreLocation", + "printedName": "CoreLocation", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "PenBleSDK", + "printedName": "PenBleSDK", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "TypeDecl", + "name": "WiFiAgentProtocol", + "printedName": "WiFiAgentProtocol", + "children": [ + { + "kind": "Function", + "name": "wifiCommonErr", + "printedName": "wifiCommonErr(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiCommonErr::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP13wifiCommonErryySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiHandshake", + "printedName": "wifiHandshake(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiHandshake:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP13wifiHandshakeyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiPower", + "printedName": "wifiPower(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiPower::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP9wifiPoweryySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileListFail", + "printedName": "wifiFileListFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiFileListFail:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP16wifiFileListFailyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileList", + "printedName": "wifiFileList(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudBleSDK.BleFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "BleFile", + "printedName": "PlaudBleSDK.BleFile", + "usr": "c:@M@PenBleSDK@objc(cs)BleFile" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiFileList:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP12wifiFileListyySay0a3BleD00jH0CGF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFile", + "printedName": "wifiSyncFile(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiSyncFile::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP12wifiSyncFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileData", + "printedName": "wifiSyncFileData(_:_:_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiSyncFileData::::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP16wifiSyncFileDatayySi_S2i10Foundation0J0VtF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDataComplete", + "printedName": "wifiDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiDataComplete", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP16wifiDataCompleteyyF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileStop", + "printedName": "wifiSyncFileStop(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiSyncFileStop:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP16wifiSyncFileStopyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileDelete", + "printedName": "wifiFileDelete(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiFileDelete::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP14wifiFileDeleteyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClientFail", + "printedName": "wifiClientFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiClientFail", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP14wifiClientFailyyF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClose", + "printedName": "wifiClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiClose:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP9wifiCloseyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRateFail", + "printedName": "wifiRateFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiRateFail:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP12wifiRateFailyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRate", + "printedName": "wifiRate(_:_:_:)", + "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": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiRate:::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP8wifiRateyySi_SiSdtF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogsFail", + "printedName": "wifiLogsFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiLogsFail:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP12wifiLogsFailyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogs", + "printedName": "wifiLogs(_:)", + "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": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiLogs:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP8wifiLogsyy10Foundation4DataVSgF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiTips", + "printedName": "wifiTips(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiTips:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP8wifiTipsyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "penRequestOTAData", + "printedName": "penRequestOTAData(start:end:payloadSize:uid:sendRatePPS:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)penRequestOTADataWithStart:end:payloadSize:uid:sendRatePPS:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP17penRequestOTAData5start3end11payloadSize3uid11sendRatePPSySi_S4itF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiOTAStatus", + "printedName": "wifiOTAStatus(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiOTAStatus::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP13wifiOTAStatusyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP", + "moduleName": "PlaudWiFiSDK", + "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": "WiFiAgent", + "printedName": "WiFiAgent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "WiFiAgent", + "printedName": "PlaudWiFiSDK.WiFiAgent", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(cpy)shared", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC6sharedACvpZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WiFiAgent", + "printedName": "PlaudWiFiSDK.WiFiAgent", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(cm)shared", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC6sharedACvgZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectLoop", + "printedName": "connectLoop", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(py)connectLoop", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectLoopSbvp", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)connectLoop", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectLoopSbvg", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)setConnectLoop:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectLoopSbvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC11connectLoopSbvM", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectLoopSbvM", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isServerStart", + "printedName": "isServerStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK0bC5AgentC13isServerStartSbvp", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isServerStartSbvp", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC13isServerStartSbvg", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isServerStartSbvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isClientOpen", + "printedName": "isClientOpen", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK0bC5AgentC12isClientOpenSbvp", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC12isClientOpenSbvp", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC12isClientOpenSbvg", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC12isClientOpenSbvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wifiVersion", + "printedName": "wifiVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK0bC5AgentC11wifiVersionSivp", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11wifiVersionSivp", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC11wifiVersionSivg", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11wifiVersionSivg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isHandshakeOk", + "printedName": "isHandshakeOk", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK0bC5AgentC13isHandshakeOkSbvp", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isHandshakeOkSbvp", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC13isHandshakeOkSbvg", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isHandshakeOkSbvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionId", + "printedName": "sessionId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(py)sessionId", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9sessionIdSivp", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)sessionId", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9sessionIdSivg", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(py)isDownloading", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isDownloadingSbvp", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)isDownloading", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isDownloadingSbvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any PlaudWiFiSDK.WiFiAgentProtocol)?" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(py)delegate", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvp", + "moduleName": "PlaudWiFiSDK", + "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 PlaudWiFiSDK.WiFiAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "WiFiAgentProtocol", + "printedName": "any PlaudWiFiSDK.WiFiAgentProtocol", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)delegate", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudWiFiSDK.WiFiAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "WiFiAgentProtocol", + "printedName": "any PlaudWiFiSDK.WiFiAgentProtocol", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)setDelegate:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvM", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvM", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(py)cmdDelegateQueue", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvp", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)cmdDelegateQueue", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvg", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)setCmdDelegateQueue:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvM", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvM", + "moduleName": "PlaudWiFiSDK", + "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@PenBleSDK@objc(cs)BleDevice" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(py)bleDevice", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvp", + "moduleName": "PlaudWiFiSDK", + "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@PenBleSDK@objc(cs)BleDevice" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)bleDevice", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvg", + "moduleName": "PlaudWiFiSDK", + "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@PenBleSDK@objc(cs)BleDevice" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)setBleDevice:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvM", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvM", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "openReleaseLog", + "printedName": "openReleaseLog(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)openReleaseLog::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC14openReleaseLogyySb_ySScSgtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openLog", + "printedName": "openLog(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)openLog::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC7openLogyySb_ySScSgtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listenPort", + "printedName": "listenPort(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)listenPort::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC10listenPortyySS_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectWifi", + "printedName": "connectWifi(_:_:_:_:)", + "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": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)connectWifi::::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectWifiyySS_SSSiSbtF", + "moduleName": "PlaudWiFiSDK", + "intro_iOS": "11.0", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelConnectWifi", + "printedName": "cancelConnectWifi()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)cancelConnectWifi", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC17cancelConnectWifiyyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAllWiFiConfigurations", + "printedName": "clearAllWiFiConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clearAllWiFiConfigurations", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC08clearAllbC14ConfigurationsyyF", + "moduleName": "PlaudWiFiSDK", + "intro_iOS": "11.0", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAllWiFiConfigurationsCompat", + "printedName": "clearAllWiFiConfigurationsCompat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clearAllWiFiConfigurationsCompat", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC08clearAllbC20ConfigurationsCompatyyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)disconnect", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC10disconnectyyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "serverDidStart", + "printedName": "serverDidStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)serverDidStart", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC14serverDidStartyyF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "serverDidStart", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "serverDidFailWithError", + "printedName": "serverDidFailWithError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)serverDidFailWithError:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC22serverDidFailWithErroryys0J0_pF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "serverDidFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "serverDidStop", + "printedName": "serverDidStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)serverDidStop", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13serverDidStopyyF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "serverDidStop", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidOpen", + "printedName": "clientDidOpen()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidOpen", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13clientDidOpenyyF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidOpen", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidReceiveText", + "printedName": "clientDidReceiveText(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidReceiveText:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC20clientDidReceiveTextyySSF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidReceiveText:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidReceive", + "printedName": "clientDidReceive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidReceiveData:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16clientDidReceiveyy10Foundation4DataVF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidReceiveData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidFailWithError", + "printedName": "clientDidFailWithError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidFailWithError:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC22clientDidFailWithErroryys0J0_pF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidClose", + "printedName": "clientDidClose(withCode:reason:wasClean:)", + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidCloseWithCode:reason:wasClean:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC14clientDidClose8withCode6reason8wasCleanySi_SSSbtF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidCloseWithCode:reason:wasClean:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isWebSocketConnected", + "printedName": "isWebSocketConnected()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)isWebSocketConnected", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC20isWebSocketConnectedSbyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appGetLogs", + "printedName": "appGetLogs(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK0bC5AgentC10appGetLogsyySbF", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC10appGetLogsyySbF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appWiFiRate", + "printedName": "appWiFiRate(_:_:)", + "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:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appWiFiRate::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC03appbC4RateyySb_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appDeleteFile", + "printedName": "appDeleteFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appDeleteFile::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13appDeleteFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appExtendWifiExitTime", + "printedName": "appExtendWifiExitTime()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appExtendWifiExitTime", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC21appExtendWifiExitTimeyyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appStopSyncFile", + "printedName": "appStopSyncFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appStopSyncFile::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC15appStopSyncFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appSyncFile", + "printedName": "appSyncFile(_:_:_:_:)", + "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", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appSyncFile::::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11appSyncFileyySi_S3itF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appGetFileList", + "printedName": "appGetFileList(_:_:_:)", + "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:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appGetFileList:::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC14appGetFileListyySi_SiSbtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startPushOTA", + "printedName": "startPushOTA(_:_: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" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)startPushOTA::crc::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC12startPushOTA__3crc_ySi_S3itF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendFilePackToPen", + "printedName": "sendFilePackToPen(type:start:len:last:uid:binData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)sendFilePackToPenWithType:start:len:last:uid:binData:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC17sendFilePackToPen4type5start3len4last3uid7binDataySi_s5Int32VALSbAL10Foundation0Q0VSgtF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "sendFilePackToPenWithType:start:len:last:uid:binData:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentWiFiName", + "printedName": "getCurrentWiFiName()", + "children": [ + { + "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:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)getCurrentWiFiName", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC010getCurrentbC4NameSSSgyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentWiFiNameWithRetry", + "printedName": "getCurrentWiFiNameWithRetry(maxRetries:delay:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)getCurrentWiFiNameWithRetryWithMaxRetries:delay:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC010getCurrentbC13NameWithRetry10maxRetries5delaySSSgSi_SdtF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "getCurrentWiFiNameWithRetryWithMaxRetries:delay:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC", + "moduleName": "PlaudWiFiSDK", + "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": "GCDTool", + "printedName": "GCDTool", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "GCDTool", + "printedName": "PlaudWiFiSDK.GCDTool", + "usr": "s:12PlaudWiFiSDK7GCDToolC" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK7GCDToolC6sharedACvpZ", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC6sharedACvpZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GCDTool", + "printedName": "PlaudWiFiSDK.GCDTool", + "usr": "s:12PlaudWiFiSDK7GCDToolC" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK7GCDToolC6sharedACvgZ", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC6sharedACvgZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "execute", + "printedName": "execute(label:_:)", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK7GCDToolC7execute5label_yycSS_yyXLtF", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC7execute5label_yycSS_yyXLtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel(label:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK7GCDToolC6cancel5labelySS_tF", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC6cancel5labelySS_tF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12PlaudWiFiSDK7GCDToolC", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC", + "moduleName": "PlaudWiFiSDK", + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "BooleanLiteral", + "offset": 1244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "IntegerLiteral", + "offset": 1846, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "BooleanLiteral", + "offset": 1866, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "IntegerLiteral", + "offset": 1888, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "IntegerLiteral", + "offset": 2392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "IntegerLiteral", + "offset": 2855, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 692, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4296, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 4349, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 4424, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4584, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4733, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4815, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 4887, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4960, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5068, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 5165, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "StringLiteral", + "offset": 5239, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5283, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5324, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "StringLiteral", + "offset": 5872, + "length": 27, + "value": "\"com.plaud.wifi.send.queue\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "StringLiteral", + "offset": 6215, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 7594, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 9809, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 9833, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 11260, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 15932, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 21780, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 49785, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 50536, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 51143, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 51161, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 51824, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 66084, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "FloatLiteral", + "offset": 66109, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 68141, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69577, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69639, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69695, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69754, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69803, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 71176, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 71195, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 74306, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 74377, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 74430, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 74484, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftdoc b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..4627789 Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftinterface b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftinterface new file mode 100644 index 0000000..01f6e74 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftinterface @@ -0,0 +1,168 @@ +// 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 PlaudWiFiSDK +// swift-module-flags-ignorable: -no-verify-emitted-module-interface +import SystemConfiguration.CaptiveNetwork +import CommonCrypto +import CoreLocation +import Foundation +import NetworkExtension +import PlaudBleSDK +@_exported import PlaudWiFiSDK +import Swift +import SystemConfiguration +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class Agent : ObjectiveC.NSObject { + @objc public static let shared: PlaudWiFiSDK.Agent + @objc public func isDeviceConnect() -> Swift.Bool + @objc public func bleDevice() -> PlaudBleSDK.BleDevice? + @objc public func getFileList(_ uid: Swift.Int, _ sessionId: Swift.Int, _ single: Swift.Bool = false) + @objc public func syncFile(_ sessionId: Swift.Int, _ start: Swift.Int, _ end: Swift.Int = 0, _ decode: Swift.Bool = false, _ scene: Swift.Int = 1) + @objc public func stopSyncFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc public func deleteFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc public func sessionId() -> Swift.Int + @objc public func isDownloading() -> Swift.Bool + @objc public func isRecording() -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers open class NetworkReachabilityManager { + public enum NetworkReachabilityStatus { + case unknown + case notReachable + case reachable(PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType) + } + public enum ConnectionType { + case ethernetOrWiFi + case wwan + public static func == (a: PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType, b: PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public typealias Listener = (PlaudWiFiSDK.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: PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus { + get + } + open var listenerQueue: Dispatch.DispatchQueue + open var listener: PlaudWiFiSDK.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 PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus : Swift.Equatable { +} +public func == (lhs: PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus, rhs: PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> Swift.Bool +@objc public protocol WiFiAgentProtocol { + @objc func wifiCommonErr(_ cmd: Swift.Int, _ status: Swift.Int) + @objc func wifiHandshake(_ status: Swift.Int) + @objc func wifiPower(_ power: Swift.Int, _ voltage: Swift.Int) + @objc func wifiFileListFail(_ status: Swift.Int) + @objc func wifiFileList(_ files: [PlaudBleSDK.BleFile]) + @objc func wifiSyncFile(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc func wifiSyncFileData(_ sessionId: Swift.Int, _ offset: Swift.Int, _ count: Swift.Int, _ binData: Foundation.Data) + @objc func wifiDataComplete() + @objc func wifiSyncFileStop(_ status: Swift.Int) + @objc func wifiFileDelete(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc func wifiClientFail() + @objc func wifiClose(_ status: Swift.Int) + @objc func wifiRateFail(_ status: Swift.Int) + @objc func wifiRate(_ instantRate: Swift.Int, _ averageRate: Swift.Int, _ lossRate: Swift.Double) + @objc func wifiLogsFail(_ status: Swift.Int) + @objc func wifiLogs(_ logData: Foundation.Data?) + @objc func wifiTips(_ tips: Swift.Int) + @objc func penRequestOTAData(start: Swift.Int, end: Swift.Int, payloadSize: Swift.Int, uid: Swift.Int, sendRatePPS: Swift.Int) + @objc func wifiOTAStatus(_ status: Swift.Int, _ uid: Swift.Int) +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class WiFiAgent : ObjectiveC.NSObject { + @objc public static let shared: PlaudWiFiSDK.WiFiAgent + @objc public var connectLoop: Swift.Bool + public var isServerStart: Swift.Bool { + get + } + public var isClientOpen: Swift.Bool { + get + } + public var wifiVersion: Swift.Int { + get + } + public var isHandshakeOk: Swift.Bool { + get + } + @objc public var sessionId: Swift.Int { + get + } + @objc public var isDownloading: Swift.Bool { + get + } + @objc weak public var delegate: (any PlaudWiFiSDK.WiFiAgentProtocol)? + @objc public var cmdDelegateQueue: Dispatch.DispatchQueue + @objc public var bleDevice: PlaudBleSDK.BleDevice? { + @objc get + @objc set + } + @objc public func openReleaseLog(_ opened: Swift.Bool, _ backBlock: ((Swift.String) -> Swift.Void)? = nil) + @objc public func openLog(_ opened: Swift.Bool, _ backBlock: ((Swift.String) -> Swift.Void)? = nil) + @objc public func listenPort(_ ssid: Swift.String, _ overtimeSec: Swift.Int = 30) + @available(iOS 11.0, *) + @objc public func connectWifi(_ ssid: Swift.String, _ passphrase: Swift.String, _ overtimeSec: Swift.Int = 60, _ needRetry: Swift.Bool = true) + @objc public func cancelConnectWifi() + @available(iOS 11.0, *) + @objc public func clearAllWiFiConfigurations() + @objc public func clearAllWiFiConfigurationsCompat() + @objc public func disconnect() + @objc deinit +} +extension PlaudWiFiSDK.WiFiAgent : PlaudWiFiSDK.JXWebSocketServerDelegate { + @objc dynamic public func serverDidStart() + @objc dynamic public func serverDidFailWithError(_ error: any Swift.Error) + @objc dynamic public func serverDidStop() + @objc dynamic public func clientDidOpen() + @objc dynamic public func clientDidReceiveText(_ text: Swift.String) + @objc dynamic public func clientDidReceive(_ data: Foundation.Data) + @objc dynamic public func clientDidFailWithError(_ error: any Swift.Error) + @objc dynamic public func clientDidClose(withCode code: Swift.Int, reason: Swift.String, wasClean: Swift.Bool) +} +extension PlaudWiFiSDK.WiFiAgent { + @objc dynamic public func isWebSocketConnected() -> Swift.Bool + public func appGetLogs(_ begin: Swift.Bool) + @objc dynamic public func appWiFiRate(_ onOff: Swift.Bool, _ packSize: Swift.Int) + @objc dynamic public func appDeleteFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc dynamic public func appExtendWifiExitTime() + @objc dynamic public func appStopSyncFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc dynamic public func appSyncFile(_ sessionId: Swift.Int, _ start: Swift.Int, _ end: Swift.Int = 0, _ scene: Swift.Int = 1) + @objc dynamic public func appGetFileList(_ uid: Swift.Int, _ sessionId: Swift.Int, _ single: Swift.Bool = false) + @objc dynamic public func startPushOTA(_ uid: Swift.Int, _ fileSize: Swift.Int, crc: Swift.Int, _ toVersion: Swift.Int) + @objc dynamic public func sendFilePackToPen(type: Swift.Int, start: Swift.Int32, len: Swift.Int32, last: Swift.Bool, uid: Swift.Int32, binData: Foundation.Data?) +} +extension PlaudWiFiSDK.WiFiAgent { + @objc dynamic public func getCurrentWiFiName() -> Swift.String? + @objc dynamic public func getCurrentWiFiNameWithRetry(maxRetries: Swift.Int = 3, delay: Foundation.TimeInterval = 1.0) -> Swift.String? +} +@_hasMissingDesignatedInitializers public class GCDTool { + public static let shared: PlaudWiFiSDK.GCDTool + public typealias AnythingBlock = () -> Swift.Void + public func execute(label identifier: Swift.String, _ work: @escaping @convention(block) () -> Swift.Void) -> PlaudWiFiSDK.GCDTool.AnythingBlock + public func cancel(label identifier: Swift.String) + @objc deinit +} +extension PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType : Swift.Equatable {} +extension PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType : Swift.Hashable {} diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/module.modulemap b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/module.modulemap new file mode 100644 index 0000000..71b8f61 --- /dev/null +++ b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/module.modulemap @@ -0,0 +1,11 @@ +framework module PlaudWiFiSDK { + umbrella header "PlaudWiFiSDK.h" + export * + + module * { export * } +} + +module PlaudWiFiSDK.Swift { + header "PlaudWiFiSDK-Swift.h" + requires objc +} diff --git a/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/PlaudWiFiSDK b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/PlaudWiFiSDK new file mode 100755 index 0000000..2b36129 Binary files /dev/null and b/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/PlaudWiFiSDK differ diff --git a/modules/plaud-sdk/ios/PlaudSdk.podspec b/modules/plaud-sdk/ios/PlaudSdk.podspec new file mode 100644 index 0000000..2fc3317 --- /dev/null +++ b/modules/plaud-sdk/ios/PlaudSdk.podspec @@ -0,0 +1,36 @@ +require 'json' + +package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json'))) + +Pod::Spec.new do |s| + s.name = 'PlaudSdk' + s.version = package['version'] + s.summary = package['description'] + s.description = package['description'] + s.license = package['license'] + s.author = package['author'] + s.homepage = 'https://plaud.ai' + # Plaud's frameworks are built for iOS 15+ (arm64 device only). + s.platforms = { :ios => '15.1' } + s.swift_version = '5.9' + s.source = { git: '' } + s.static_framework = true + + s.dependency 'ExpoModulesCore' + + # Only compile the module's own Swift here; the SDK binaries are vendored below. + s.source_files = '*.{h,m,swift}' + + # The Plaud SDK, shipped as precompiled binary frameworks. CocoaPods embeds and + # code-signs these automatically (the PlaudDeviceBasicSDK.bundle is nested inside + # its .framework, so it comes along for free — no separate resource_bundles needed). + s.vendored_frameworks = [ + 'Frameworks/PlaudBleSDK.xcframework', + 'Frameworks/PlaudWiFiSDK.xcframework', + 'Frameworks/PlaudDeviceBasicSDK.xcframework' + ] + + s.pod_target_xcconfig = { + 'DEFINES_MODULE' => 'YES' + } +end diff --git a/modules/plaud-sdk/ios/PlaudSdkModule.swift b/modules/plaud-sdk/ios/PlaudSdkModule.swift new file mode 100644 index 0000000..b0a4be3 --- /dev/null +++ b/modules/plaud-sdk/ios/PlaudSdkModule.swift @@ -0,0 +1,405 @@ +import ExpoModulesCore +import PlaudDeviceBasicSDK +import PlaudBleSDK + +// MARK: - Typed argument records + +struct InitOptions: Record { + @Field var userAccessToken: String = "" + @Field var customDomain: String = "" + @Field var userId: String? +} + +struct ConnectOptions: Record { + @Field var uuid: String? + @Field var serialNumber: String? + @Field var deviceToken: String? +} + +struct DepairOptions: Record { + @Field var clear: Bool = true +} + +struct FileListOptions: Record { + @Field var startSessionId: Int = 0 +} + +struct ExportOptions: Record { + @Field var sessionId: Int = -1 + @Field var format: String = "mp3" + @Field var channels: Int = 1 +} + +/// Expo module bridging Plaud's native iOS SDK. This is the RN counterpart of the +/// Capacitor `PlaudSdk` plugin (PlaudSdkPlugin.swift). Expo's `Module` base class isn't +/// `NSObject`-derived, so it can't itself conform to the `@objc PlaudDeviceAgentProtocol`; +/// all SDK interaction and delegate handling lives in `PlaudSdkController` (an NSObject), +/// which emits results back to JS through the closure the module hands it. +/// +/// Surface (mirrors the Capacitor plugin, minus the `readFile`/`putBinary` CORS shims that +/// only existed because Capacitor loaded a remote-origin WebView — RN has no such +/// constraint and reads exports with expo-file-system / uploads with fetch): +/// connection lifecycle, file listing, and on-device audio export. +public class PlaudSdkModule: Module { + private lazy var controller = PlaudSdkController { [weak self] event, body in + // Hop to the main queue before crossing into JS, as the Capacitor plugin's `notify` did — + // SDK delegate callbacks can arrive on arbitrary threads. + DispatchQueue.main.async { self?.sendEvent(event, body) } + } + + public func definition() -> ModuleDefinition { + Name("PlaudSdk") + + Events( + "scanResult", "scanTimeout", "connectState", "penState", "bind", "fileList", + "exportProgress", "recordStart", "recordStop", "recordPause", "recordResume", "depair" + ) + + AsyncFunction("initSDK") { (options: InitOptions, promise: Promise) in + self.controller.initSDK(options, promise: promise) + } + + AsyncFunction("startScan") { (promise: Promise) in + self.controller.startScan(promise: promise) + } + + AsyncFunction("stopScan") { (promise: Promise) in + self.controller.stopScan(promise: promise) + } + + AsyncFunction("connectBleDevice") { (options: ConnectOptions, promise: Promise) in + self.controller.connectBleDevice(options, promise: promise) + } + + AsyncFunction("disconnect") { (promise: Promise) in + self.controller.disconnect(promise: promise) + } + + AsyncFunction("depair") { (options: DepairOptions?, promise: Promise) in + self.controller.depair(options ?? DepairOptions(), promise: promise) + } + + AsyncFunction("isConnected") { (promise: Promise) in + self.controller.isConnected(promise: promise) + } + + AsyncFunction("getFileList") { (options: FileListOptions?, promise: Promise) in + self.controller.getFileList(options ?? FileListOptions(), promise: promise) + } + + AsyncFunction("exportAudio") { (options: ExportOptions, promise: Promise) in + self.controller.exportAudio(options, promise: promise) + } + } +} + +/// Owns every interaction with `PlaudDeviceAgent`, holds the scan cache / in-flight export +/// bridges, and is the SDK's `PlaudDeviceAgentProtocol` delegate. Delegate callbacks are +/// forwarded to JS via `emit`, the closure supplied by the module (which calls `sendEvent`). +private final class PlaudSdkController: NSObject, PlaudDeviceAgentProtocol { + private let emit: (String, [String: Any?]) -> Void + + /// `connectBleDevice` needs the actual `BleDevice` the SDK handed us during a scan — JS + /// only carries identifiers, so we retain scanned objects and look them up. Keyed by + /// `uuid` (the CoreBluetooth peripheral id). Touched only on the main queue. + private var scannedDevices: [String: BleDevice] = [:] + + /// Retains in-flight export bridges so neither they nor their `Promise` are deallocated + /// before the SDK finishes. Touched only on the main queue. + private var exportCallbacks: Set = [] + + /// App-level user identifier from `initSDK`, reused as the default connect `deviceToken` + /// (it's what binds the device to the user during the handshake). + private var userId: String? + + private var scanReadyAttempts = 0 + private var isScanning = false + + init(emit: @escaping (String, [String: Any?]) -> Void) { + self.emit = emit + super.init() + } + + // MARK: - Connection lifecycle + + func initSDK(_ options: InitOptions, promise: Promise) { + guard !options.userAccessToken.isEmpty else { + promise.reject("ERR_PLAUD_ARGS", "userAccessToken is required") + return + } + guard !options.customDomain.isEmpty else { + promise.reject("ERR_PLAUD_ARGS", "customDomain is required (domain only, no https://)") + return + } + let userId = options.userId + DispatchQueue.main.async { + self.userId = userId + let agent = PlaudDeviceAgent.shared + agent.delegate = self + agent.initSDK(userAccessToken: options.userAccessToken, customDomain: options.customDomain) + promise.resolve(nil) + } + } + + func startScan(promise: Promise) { + DispatchQueue.main.async { + // CoreBluetooth silently drops scanForPeripherals until the central manager reaches + // .poweredOn (async after initSDK, gated on the first-launch permission prompt), so + // gate the real scan on the power-on state — same as the Capacitor plugin. + self.isScanning = true + self.scanReadyAttempts = 0 + self.attemptScanWhenReady() + promise.resolve(nil) + } + } + + /// Fires the SDK scan once Bluetooth is powered on, polling ~18s. Main queue only. + private func attemptScanWhenReady() { + guard isScanning else { return } + if BleAgent.shared.isPoweredOn { + PlaudDeviceAgent.shared.startScan() + return + } + scanReadyAttempts += 1 + if scanReadyAttempts > 60 { + emit("scanTimeout", ["reason": "bluetoothNotPoweredOn"]) + return + } + DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { [weak self] in + self?.attemptScanWhenReady() + } + } + + func stopScan(promise: Promise) { + DispatchQueue.main.async { + self.isScanning = false + PlaudDeviceAgent.shared.stopScan() + promise.resolve(nil) + } + } + + func connectBleDevice(_ options: ConnectOptions, promise: Promise) { + // The app always connects with a device token (the app-level userId) so the handshake + // binds the device to the user. Prefer an explicit token, else the remembered userId. + let token = options.deviceToken ?? self.userId + DispatchQueue.main.async { + self.isScanning = false + guard let device = self.lookupDevice(uuid: options.uuid, serialNumber: options.serialNumber) else { + promise.reject("ERR_PLAUD_UNKNOWN_DEVICE", + "Unknown device — scan first, then connect by uuid or serialNumber") + return + } + if let token = token, !token.isEmpty { + PlaudDeviceAgent.shared.connectBleDevice(bleDevice: device, deviceToken: token) + } else { + PlaudDeviceAgent.shared.connectBleDevice(bleDevice: device) + } + promise.resolve(nil) + } + } + + func disconnect(promise: Promise) { + DispatchQueue.main.async { + PlaudDeviceAgent.shared.disconnect() + promise.resolve(nil) + } + } + + func depair(_ options: DepairOptions, promise: Promise) { + DispatchQueue.main.async { + PlaudDeviceAgent.shared.depair(clear: options.clear) + promise.resolve(nil) + } + } + + func isConnected(promise: Promise) { + DispatchQueue.main.async { + promise.resolve(["connected": PlaudDeviceAgent.shared.isConnected()]) + } + } + + // MARK: - Files + + func getFileList(_ options: FileListOptions, promise: Promise) { + DispatchQueue.main.async { + PlaudDeviceAgent.shared.getFileList(startSessionId: options.startSessionId) + promise.resolve(nil) + } + } + + /// Decode a recording to Documents/PlaudExports. Resolves `{ sessionId, outputPath }` on + /// completion; emits `exportProgress` along the way. `format` defaults to mp3. + func exportAudio(_ options: ExportOptions, promise: Promise) { + guard options.sessionId >= 0 else { + promise.reject("ERR_PLAUD_ARGS", "sessionId is required") + return + } + let format = Self.exportFormat(from: options.format) + let channels = options.channels + let sessionId = options.sessionId + DispatchQueue.main.async { + let dir = FileManager.default + .urls(for: .documentDirectory, in: .userDomainMask)[0] + .appendingPathComponent("PlaudExports", isDirectory: true) + try? FileManager.default.createDirectory(at: dir, withIntermediateDirectories: true) + + let bridge = ExportCallbackBridge(sessionId: sessionId, promise: promise, controller: self) + self.exportCallbacks.insert(bridge) + PlaudDeviceAgent.shared.exportAudio( + sessionId: sessionId, + outputDir: dir.path, + format: format, + channels: channels, + callback: bridge + ) + } + } + + // MARK: - PlaudDeviceAgentProtocol + + func blePenState(state: Int, privacy: Int, keyState: Int, uDisk: Int, + findMyToken: Int, hasSndpKey: Int, deviceAccessToken: Int) { + emit("penState", [ + "state": state, "privacy": privacy, "keyState": keyState, "uDisk": uDisk, + "findMyToken": findMyToken, "hasSndpKey": hasSndpKey, "deviceAccessToken": deviceAccessToken + ]) + } + + func bleScanResult(bleDevices: [BleDevice]) { + DispatchQueue.main.async { + for d in bleDevices { self.scannedDevices[d.uuid] = d } + } + let devices = bleDevices.map { d -> [String: Any] in + [ + "name": d.name, + "uuid": d.uuid, + "serialNumber": d.serialNumber, + "rssi": d.rssi, + "supportWiFi": d.supportWiFi + ] + } + emit("scanResult", ["devices": devices]) + } + + func bleScanOverTime() { + emit("scanTimeout", [:]) + } + + func bleConnectState(state: Int) { + // 1 = connected, 0 = disconnected, {2, -1, -2} = connection/handshake failure. + let failed = (state == 2 || state == -1 || state == -2) + emit("connectState", ["connected": state == 1, "failed": failed, "state": state]) + } + + func bleBind(sn: String?, status: Int, protVersion: Int, timezone: Int) { + emit("bind", ["sn": sn, "status": status, "protVersion": protVersion]) + } + + // MARK: - Recording (device-initiated: physical button / VAD) + + func bleRecordStart(sessionId: Int, start: Int, status: Int, scene: Int, + startTime: Int, reason: Int) { + emit("recordStart", [ + "sessionId": sessionId, "start": start, "status": status, + "scene": scene, "startTime": startTime, "reason": reason + ]) + } + + func bleRecordStop(sessionId: Int, reason: Int, fileExist: Bool, fileSize: Int) { + emit("recordStop", [ + "sessionId": sessionId, "reason": reason, "fileExist": fileExist, "fileSize": fileSize + ]) + } + + func bleRecordPause(sessionId: Int, reason: Int, fileExist: Bool, fileSize: Int) { + emit("recordPause", [ + "sessionId": sessionId, "reason": reason, "fileExist": fileExist, "fileSize": fileSize + ]) + } + + func bleRecordResume(sessionId: Int, start: Int, status: Int, scene: Int, startTime: Int) { + emit("recordResume", [ + "sessionId": sessionId, "start": start, "status": status, + "scene": scene, "startTime": startTime + ]) + } + + func bleDepair(_ status: Int) { + emit("depair", ["status": status]) + } + + func bleFileList(bleFiles: [BleFile]) { + let files = bleFiles.map { f -> [String: Any] in + [ + "sn": f.sn, + "sessionId": f.sessionId, + "size": f.size, + "scenes": f.scenes, + "channels": f.channels, + "isOgg": f.isOgg, + "isMusic": f.isMusic, + "duration": f.duration() + ] + } + emit("fileList", ["files": files]) + } + + // MARK: - Helpers + + private func lookupDevice(uuid: String?, serialNumber: String?) -> BleDevice? { + if let uuid = uuid, let d = scannedDevices[uuid] { return d } + if let serial = serialNumber { + return scannedDevices.values.first { $0.serialNumber == serial } + } + return nil + } + + private static func exportFormat(from raw: String?) -> AudioExportFormat { + switch (raw ?? "mp3").lowercased() { + case "pcm": return .pcm + case "wav": return .wav + case "opus": return .opus + default: return .mp3 + } + } + + fileprivate func emitEvent(_ event: String, _ body: [String: Any?]) { + emit(event, body) + } + + fileprivate func finishExport(_ bridge: ExportCallbackBridge) { + DispatchQueue.main.async { [weak self] in + self?.exportCallbacks.remove(bridge) + } + } +} + +/// Adapts the SDK's per-call `AudioExportCallback` to the module: progress becomes an +/// `exportProgress` event, completion/error resolves/rejects the originating Promise. +private final class ExportCallbackBridge: NSObject, AudioExportCallback { + private let sessionId: Int + private let promise: Promise + private weak var controller: PlaudSdkController? + + init(sessionId: Int, promise: Promise, controller: PlaudSdkController) { + self.sessionId = sessionId + self.promise = promise + self.controller = controller + } + + func onProgress(_ progress: Int, message: String) { + controller?.emitEvent("exportProgress", [ + "sessionId": sessionId, "progress": progress, "message": message + ]) + } + + func onComplete(outputPath: String) { + promise.resolve(["sessionId": sessionId, "outputPath": outputPath]) + if let controller = controller { controller.finishExport(self) } + } + + func onError(_ error: String) { + promise.reject("ERR_PLAUD_EXPORT", error) + if let controller = controller { controller.finishExport(self) } + } +} diff --git a/modules/plaud-sdk/package.json b/modules/plaud-sdk/package.json new file mode 100644 index 0000000..7792fcb --- /dev/null +++ b/modules/plaud-sdk/package.json @@ -0,0 +1,9 @@ +{ + "name": "plaud-sdk", + "version": "1.0.0", + "description": "Local Expo module bridging Plaud's native iOS device SDK (BLE connect, file list, on-device audio export).", + "main": "index.ts", + "author": "Plaud", + "license": "UNLICENSED", + "private": true +} diff --git a/modules/plaud-sdk/src/PlaudSdk.types.ts b/modules/plaud-sdk/src/PlaudSdk.types.ts new file mode 100644 index 0000000..cd08bd5 --- /dev/null +++ b/modules/plaud-sdk/src/PlaudSdk.types.ts @@ -0,0 +1,142 @@ +import type { NativeModule } from 'expo-modules-core'; + +/** A device surfaced by the SDK's `bleScanResult` callback. */ +export interface PlaudScanDevice { + name: string; + uuid: string; + serialNumber: string; + rssi: number; + supportWiFi: boolean; +} + +export interface PlaudScanResult { + devices: PlaudScanDevice[]; +} + +export interface PlaudConnectState { + connected: boolean; + /** True for connection/handshake failure (state 2/-1/-2), vs. a normal disconnect. */ + failed: boolean; + state: number; +} + +export interface PlaudPenState { + state: number; + privacy: number; + keyState: number; + uDisk: number; + findMyToken: number; + hasSndpKey: number; + deviceAccessToken: number; +} + +/** A recording stored on the device, from the `fileList` event. */ +export interface PlaudFile { + sn: string; + sessionId: number; + size: number; + scenes: number; + channels: number; + isOgg: boolean; + isMusic: boolean; + /** Duration in seconds. */ + duration: number; +} + +export interface PlaudFileList { + files: PlaudFile[]; +} + +export interface PlaudExportProgress { + sessionId: number; + progress: number; + message: string; +} + +/** Device-initiated recording started (physical button / VAD). */ +export interface PlaudRecordStart { + sessionId: number; + start: number; + status: number; + scene: number; + startTime: number; + reason: number; +} + +/** Device-initiated recording stopped/paused, with the resulting file info. */ +export interface PlaudRecordStop { + sessionId: number; + reason: number; + fileExist: boolean; + fileSize: number; +} + +/** Device-initiated recording resumed. */ +export interface PlaudRecordResume { + sessionId: number; + start: number; + status: number; + scene: number; + startTime: number; +} + +export type PlaudAudioFormat = 'pcm' | 'mp3' | 'wav' | 'opus'; + +/** Event name → listener signature. Consumed by `PlaudSdk.addListener(name, cb)`. */ +export type PlaudSdkEvents = { + scanResult: (data: PlaudScanResult) => void; + scanTimeout: (data: { reason?: string }) => void; + connectState: (data: PlaudConnectState) => void; + penState: (data: PlaudPenState) => void; + bind: (data: { sn: string | null; status: number; protVersion: number }) => void; + fileList: (data: PlaudFileList) => void; + exportProgress: (data: PlaudExportProgress) => void; + recordStart: (data: PlaudRecordStart) => void; + recordStop: (data: PlaudRecordStop) => void; + recordPause: (data: PlaudRecordStop) => void; + recordResume: (data: PlaudRecordResume) => void; + depair: (data: { status: number }) => void; +}; + +/** + * Typed shape of the native `PlaudSdk` module (see modules/plaud-sdk/ios/PlaudSdkModule.swift). + * It extends `NativeModule`, so `addListener` / `removeListener` for every event above come + * for free and are fully typed. + * + * iOS only: on Android / the simulator (no arm64 SDK slice) these calls reject. Guard with + * `PlaudSdk.isAvailable` at call sites. + */ +export declare class PlaudSdkModule extends NativeModule { + /** + * Initialise the SDK with a per-user JWT. `customDomain` is domain-only (no https://). + * `userId` is the app-level identifier reused as the default connect `deviceToken`. + */ + initSDK(options: { + userAccessToken: string; + customDomain: string; + userId?: string; + }): Promise; + startScan(): Promise; + stopScan(): Promise; + /** Connect to a device from a prior `scanResult`, by `uuid` (preferred) or `serialNumber`. */ + connectBleDevice(options: { + uuid?: string; + serialNumber?: string; + deviceToken?: string; + }): Promise; + disconnect(): Promise; + /** Unpair; with `clear: true` (default) also clears local pairing state. Result via `depair` event. */ + depair(options?: { clear?: boolean }): Promise; + isConnected(): Promise<{ connected: boolean }>; + /** Request the recording list; results arrive via the `fileList` event. */ + getFileList(options?: { startSessionId?: number }): Promise; + /** + * Decode a recording to a file in the app's Documents/PlaudExports dir. Resolves with the + * written path; emits `exportProgress` events. `format` defaults to "mp3". + */ + exportAudio(options: { + sessionId: number; + format?: PlaudAudioFormat; + channels?: number; + }): Promise<{ sessionId: number; outputPath: string }>; +} diff --git a/modules/plaud-sdk/src/index.ts b/modules/plaud-sdk/src/index.ts new file mode 100644 index 0000000..4dfabee --- /dev/null +++ b/modules/plaud-sdk/src/index.ts @@ -0,0 +1,31 @@ +import { requireNativeModule } from 'expo-modules-core'; +import { Platform } from 'react-native'; +import type { PlaudSdkModule } from './PlaudSdk.types'; +export * from './PlaudSdk.types'; + +let nativeModule: PlaudSdkModule | null = null; +try { + if (Platform.OS === 'ios') { + nativeModule = requireNativeModule('PlaudSdk'); + } +} catch { + nativeModule = null; +} + +export const isAvailable: boolean = nativeModule != null; + +export const PlaudSdk: PlaudSdkModule = nativeModule ?? + (new Proxy( + {}, + { + get(_target, prop) { + if (prop === 'addListener' || prop === 'removeListener' || prop === 'removeAllListeners') { + return () => ({ remove() {} }); + } + return () => + Promise.reject(new Error('PlaudSdk native module is unavailable on this platform')); + }, + }, + ) as PlaudSdkModule); + +export default PlaudSdk; diff --git a/react-native-demo/.env.example b/react-native-demo/.env.example new file mode 100644 index 0000000..29eb0de --- /dev/null +++ b/react-native-demo/.env.example @@ -0,0 +1,14 @@ +# Plaud demo env vars. Copy to `.env.local` and fill in real values. +# +# ⚠️ EXPO_PUBLIC_* vars are inlined into the JS bundle and are extractable from the app. +# This is acceptable for a DEMO build only. In production, the client id / api key must +# live on a backend (see the Capacitor app) — never ship them in the client. + +# Per-user access token used for initSDK AND file upload (Bearer). Mint via the partner +# OAuth flow (see backend-starter-plaud/src/plaud.ts) or paste one for local testing. +EXPO_PUBLIC_PLAUD_ACCESS_TOKEN= + +# Partner credentials for the transcription API (X-Client-Id / X-Client-Api-Key). +# Create in the Plaud Developer Portal: https://platform.plaud.ai/developer/portal +EXPO_PUBLIC_PLAUD_CLIENT_ID= +EXPO_PUBLIC_PLAUD_API_KEY= diff --git a/react-native-demo/.gitignore b/react-native-demo/.gitignore index 4b00baf..20cb496 100644 --- a/react-native-demo/.gitignore +++ b/react-native-demo/.gitignore @@ -1,4 +1,5 @@ # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files +.env # dependencies node_modules/ diff --git a/react-native-demo/README.md b/react-native-demo/README.md index f8ab635..8d4786f 100644 --- a/react-native-demo/README.md +++ b/react-native-demo/README.md @@ -67,11 +67,7 @@ open ios/reactnativedemo.xcworkspace Once the app is installed on the device, you usually just need the JS dev server running: ```bash -npx expo start # then press the device/simulator options in the terminal -# or -npm run ios # build + run on iOS -npm run android # build + run on Android -npm run web # run in the browser +npm run ios ``` Edit files inside the **app** directory — this project uses diff --git a/react-native-demo/app.json b/react-native-demo/app.json index 859e8d0..c7135de 100644 --- a/react-native-demo/app.json +++ b/react-native-demo/app.json @@ -9,7 +9,11 @@ "userInterfaceStyle": "automatic", "ios": { "icon": "./assets/expo.icon", - "bundleIdentifier": "ai.plaud.reactnativedemo" + "bundleIdentifier": "ai.plaud.reactnativedemo", + "infoPlist": { + "NSBluetoothAlwaysUsageDescription": "Plaud uses Bluetooth to connect to your recorder and sync recordings.", + "UIBackgroundModes": ["bluetooth-central"] + } }, "android": { "adaptiveIcon": { diff --git a/react-native-demo/modules/plaud-sdk/README.md b/react-native-demo/modules/plaud-sdk/README.md new file mode 100644 index 0000000..275e203 --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/expo-module.config.json b/react-native-demo/modules/plaud-sdk/expo-module.config.json new file mode 100644 index 0000000..4d95835 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/expo-module.config.json @@ -0,0 +1,6 @@ +{ + "platforms": ["apple"], + "apple": { + "modules": ["PlaudSdkModule"] + } +} diff --git a/react-native-demo/modules/plaud-sdk/index.ts b/react-native-demo/modules/plaud-sdk/index.ts new file mode 100644 index 0000000..9b28da1 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/index.ts @@ -0,0 +1,2 @@ +export * from './src'; +export { default } from './src'; diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/Info.plist b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/Info.plist new file mode 100644 index 0000000..a2264c5 --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXAvcFilePlayer.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXAvcFilePlayer.h new file mode 100644 index 0000000..ea4a9e3 --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOggPlayer.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOggPlayer.h new file mode 100644 index 0000000..7756259 --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOpusDecoder.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/JXOpusDecoder.h new file mode 100644 index 0000000..92fc180 --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Mp3Convert.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Mp3Convert.h new file mode 100644 index 0000000..68dd71b --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NSData+SHA.h b/react-native-demo/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/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NsAgcUtil.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/NsAgcUtil.h new file mode 100644 index 0000000..7542f27 --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/OggUtil.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/OggUtil.h new file mode 100644 index 0000000..7ccf9aa --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudAlgoTool.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudAlgoTool.h new file mode 100644 index 0000000..c0adcba --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK-Swift.h b/react-native-demo/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/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/PlaudBleSDK.h new file mode 100644 index 0000000..946af2c --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/SwiftyRSA.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/SwiftyRSA.h new file mode 100644 index 0000000..32f2d0a --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Transcode.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Headers/Transcode.h new file mode 100644 index 0000000..4bd5e4d --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Info.plist b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Info.plist new file mode 100644 index 0000000..6c48b2f --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.abi.json b/react-native-demo/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/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftdoc b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/PlaudBleSDK.swiftmodule/arm64-apple-ios.swiftinterface b/react-native-demo/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/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/module.modulemap b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/Modules/module.modulemap new file mode 100644 index 0000000..a90e718 --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/PlaudBleSDK b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudBleSDK.xcframework/ios-arm64/PlaudBleSDK.framework/PlaudBleSDK differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/Info.plist b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/Info.plist new file mode 100644 index 0000000..2879f4e --- /dev/null +++ b/react-native-demo/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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK-Swift.h b/react-native-demo/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/react-native-demo/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 +#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 AVFAudio; +@import CoreFoundation; +@import Foundation; +@import ObjectiveC; +@import PlaudBleSDK; +@import PlaudWiFiSDK; +@import UIKit; +#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="PlaudDeviceBasicSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) + +@interface AVAudioPlayer (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer * _Nonnull)_ successfully:(BOOL)flag; +- (void)audioPlayerDecodeErrorDidOccur:(AVAudioPlayer * _Nonnull)_ error:(NSError * _Nullable)error; +@end + + +typedef SWIFT_ENUM(NSInteger, AudioDecryptorError, open) { + AudioDecryptorErrorInvalidHeader = 1, + AudioDecryptorErrorInvalidSymmetricKey = 2, + AudioDecryptorErrorNoEncryptedData = 3, + AudioDecryptorErrorDecryptionFailed = 4, +}; +static NSString * _Nonnull const AudioDecryptorErrorDomain = @"PlaudDeviceBasicSDK.AudioDecryptorError"; + +@class NSString; + +/// 音频导出回调协议(与 Android AudioExporter.ExportCallback 一致) +SWIFT_PROTOCOL("_TtP19PlaudDeviceBasicSDK19AudioExportCallback_") +@protocol AudioExportCallback +/// 导出进度更新 +/// \param progress 进度百分比 (0-100) +/// +/// \param message 状态消息 +/// +- (void)onProgress:(NSInteger)progress message:(NSString * _Nonnull)message; +/// 导出完成 +/// \param outputPath 输出文件路径 +/// +- (void)onCompleteWithOutputPath:(NSString * _Nonnull)outputPath; +/// 导出失败 +/// \param error 错误信息 +/// +- (void)onError:(NSString * _Nonnull)error; +@end + +/// 音频导出格式枚举(与 Android AudioExportFormat 一致) +/// 定义了 SDK 支持的音频导出格式 +typedef SWIFT_ENUM(NSInteger, AudioExportFormat, open) { +/// PCM 格式 - 原始音频数据 +/// 需要知道采样率和声道数才能正确播放 +/// 16kHz, 16-bit, mono + AudioExportFormatPcm = 0, +/// MP3 格式 - LAME 编码 +/// 通用播放格式,兼容性最好 + AudioExportFormatMp3 = 1, +/// WAV 格式(推荐) +/// 带头信息的 PCM,可直接播放 +/// 包含采样率、声道数等元数据 + AudioExportFormatWav = 2, +/// Opus 格式 - OGG/Opus 容器 +/// 高压缩比,适合语音,文件体积小 + AudioExportFormatOpus = 3, +}; + +@class PlaudEncryptHeader; + +/// Audio file E2EE decryptor for NotePro devices. +/// NotePro audio files have two encryption layers: +///
    +///
  1. +/// BLE Transport Layer - ChaCha20-Poly1305 (handled by BleAgent) +///
  2. +///
  3. +/// File Content Layer - RSA encrypted key header + ChaCha20 encrypted data (handled here) +///
  4. +///
+SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK18AudioFileDecryptor") +@interface AudioFileDecryptor : NSObject +/// Decrypt an E2EE encrypted audio file +/// \param inputPath The encrypted audio file path +/// +/// \param privateKeyPem The RSA private key in PEM format +/// +/// \param outputPath Optional output file path. If nil, creates a temp file +/// +/// +/// returns: +/// The decrypted audio file path, or original path if not encrypted ++ (NSString * _Nullable)decryptAudioFileWithInputPath:(NSString * _Nonnull)inputPath privateKeyPem:(NSString * _Nonnull)privateKeyPem outputPath:(NSString * _Nullable)outputPath error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT; +/// Check if a file is E2EE encrypted ++ (BOOL)isFileEncryptedWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +/// Get the PlaudEncryptHeader from a file ++ (PlaudEncryptHeader * _Nullable)getHeaderWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +@interface BleAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// 解密 E2EE 加密的音频文件 +- (NSString * _Nullable)decryptE2EEAudioFileWithInputPath:(NSString * _Nonnull)inputPath outputPath:(NSString * _Nullable)outputPath privateKeyPem:(NSString * _Nonnull)privateKeyPem error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT; +- (BOOL)isE2EEEncryptedFileWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +- (PlaudEncryptHeader * _Nullable)getE2EEFileHeaderWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +@end + + +@interface BleAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +@property (nonatomic, readonly) BOOL isEncryptionSupported; +- (NSDictionary * _Nonnull)getEncryptionProtocolInfo SWIFT_WARN_UNUSED_RESULT; +@end + +@protocol JXOggPlayerDelegate; +@class JXOggPlayer; + +@interface BleAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (BOOL)playDecryptedOggFileWithEncryptedFilePath:(NSString * _Nonnull)encryptedFilePath channel:(int32_t)channel delegate:(id _Nullable)delegate key:(NSString * _Nullable)key nonce:(NSString * _Nullable)nonce ad:(NSString * _Nullable)ad SWIFT_WARN_UNUSED_RESULT; +- (void)stopOggPlayback; +- (void)pauseOggPlayback; +- (void)resumeOggPlayback; +- (JXOggPlayer * _Nonnull)getOggPlayer SWIFT_WARN_UNUSED_RESULT; +@end + +@class NSData; + +@interface BleAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// 是否已建立加密通道 +@property (nonatomic, readonly) BOOL isSecureChannelEstablished; +/// 获取当前加密密钥(Base64编码,用于文件解密) +- (NSString * _Nullable)getEncryptionKey SWIFT_WARN_UNUSED_RESULT; +/// 获取当前加密Nonce(Base64编码) +- (NSString * _Nullable)getEncryptionNonce SWIFT_WARN_UNUSED_RESULT; +/// 获取当前加密AD(Base64编码) +- (NSString * _Nullable)getEncryptionAD SWIFT_WARN_UNUSED_RESULT; +/// 获取完整的加密参数 +- (NSDictionary * _Nullable)getEncryptionParameters SWIFT_WARN_UNUSED_RESULT; +/// 解密加密的OGG文件数据 +- (NSData * _Nullable)decryptFileData:(NSData * _Nonnull)encryptedData key:(NSString * _Nullable)key nonce:(NSString * _Nullable)nonce ad:(NSString * _Nullable)ad error:(NSError * _Nullable * _Nullable)error SWIFT_WARN_UNUSED_RESULT; +/// 解密加密的OGG文件 +- (BOOL)decryptFileWithInputPath:(NSString * _Nonnull)inputPath outputPath:(NSString * _Nonnull)outputPath key:(NSString * _Nullable)key nonce:(NSString * _Nullable)nonce ad:(NSString * _Nullable)ad SWIFT_WARN_UNUSED_RESULT; +/// 解密并准备OGG文件 +- (NSString * _Nullable)decryptAndPrepareOggFileWithEncryptedFilePath:(NSString * _Nonnull)encryptedFilePath channel:(int32_t)channel key:(NSString * _Nullable)key nonce:(NSString * _Nullable)nonce ad:(NSString * _Nullable)ad SWIFT_WARN_UNUSED_RESULT; +@end + + + + + +typedef SWIFT_ENUM(NSInteger, EncryptionError, open) { + EncryptionErrorNoKey = 1, + EncryptionErrorNoNonce = 2, + EncryptionErrorNoAD = 3, + EncryptionErrorDataTooShort = 4, + EncryptionErrorDecryptionFailed = 5, +}; +static NSString * _Nonnull const EncryptionErrorDomain = @"PlaudDeviceBasicSDK.EncryptionError"; + + + + +/// Latest version response model +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK21LatestVersionResponse") +@interface LatestVersionResponse : NSObject +@property (nonatomic, readonly, copy) NSString * _Nonnull type; +@property (nonatomic, readonly, copy) NSString * _Nonnull model; +@property (nonatomic, readonly, copy) NSString * _Nonnull version_type; +@property (nonatomic, readonly, copy) NSString * _Nonnull version_code; +@property (nonatomic, readonly, copy) NSString * _Nonnull version_number; +@property (nonatomic, readonly, copy) NSString * _Nonnull version_description; +@property (nonatomic, readonly) BOOL is_force; +@property (nonatomic, readonly) BOOL is_strong_guidance; +@property (nonatomic, readonly, copy) NSString * _Nullable file_md5; +@property (nonatomic, readonly, copy) NSString * _Nonnull download_url; +/// Compatibility property: version number (mapped to version_number) +@property (nonatomic, readonly, copy) NSString * _Nonnull version; +/// Compatibility property: release notes (mapped to version_description) +@property (nonatomic, readonly, copy) NSString * _Nullable release_notes; +/// Compatibility property: force update (mapped to is_force) +@property (nonatomic, readonly) BOOL force_update; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + + + + +/// Parser for standard Ogg/Opus format files +/// Used for E2EE decrypted audio files which are in standard OGG format +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK13OggOpusParser") +@interface OggOpusParser : NSObject +/// Reset the shared decoder (no-op, JXOpusDecoder manages its own lifecycle) ++ (void)resetDecoder; +@property (nonatomic, readonly) NSInteger parsedSampleRate; +@property (nonatomic, readonly) NSInteger parsedChannels; +@property (nonatomic, readonly) NSInteger parsedPreSkip; +/// Parse Ogg Opus data and extract all Opus frames +/// \param oggData The Ogg Opus file data +/// +/// +/// returns: +/// Array of raw Opus frames +- (NSArray * _Nonnull)parse:(NSData * _Nonnull)oggData SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class NSCoder; +@class NSBundle; + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK30PlaudAudioPlayerViewController") +@interface PlaudAudioPlayerViewController : UIViewController +- (nonnull instancetype)initWithSessionId:(NSInteger)sessionId OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)_ SWIFT_UNAVAILABLE; +- (void)viewDidLoad; +- (void)viewWillDisappear:(BOOL)animated; +- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer * _Nonnull)_ successfully:(BOOL)flag; +- (void)audioPlayerDecodeErrorDidOccur:(AVAudioPlayer * _Nonnull)_ error:(NSError * _Nullable)error; +- (void)audioPlayerBeginInterruption:(AVAudioPlayer * _Nonnull)_; +- (void)audioPlayerEndInterruption:(AVAudioPlayer * _Nonnull)_ withOptions:(NSUInteger)_; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE; +@end + + +SWIFT_RESILIENT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudBleDevice") +@interface PlaudBleDevice : BleDevice +- (nonnull instancetype)initWithSn:(NSString * _Nonnull)sn OBJC_DESIGNATED_INITIALIZER; +@end + +@protocol PlaudDeviceAgentProtocol; +enum PlaudDownloadFormat : NSInteger; + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK16PlaudDeviceAgent") +@interface PlaudDeviceAgent : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudDeviceAgent * _Nonnull shared;) ++ (PlaudDeviceAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +@property (nonatomic, strong) BleDevice * _Nullable recentConnectDevice; +@property (nonatomic, readonly) NSInteger sceneFlag; +/// WiFi 快传进行中标记,抑制 BLE 断连时的缓存清除和自动重连 +@property (nonatomic, readonly) BOOL isWiFiTransferActive; +/// 是否跳过 SDK 权限检查(NotePro 新固件不需要传统的 appKey/appSecret 权限验证) +@property (nonatomic) BOOL skipPermissionCheck; +@property (nonatomic, weak) id _Nullable delegate; +/// Current recording file or sync (download) file sessionId +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Initialize SDK (recommended) +/// \param userAccessToken User Access Token (JWT),用于设备认证、sn-sign、gen-key。 +/// 握手 token 自动从 JWT sub 字段解析,无需手动传入。 +/// +/// \param customDomain 服务端域名(如 “platform-us.plaud.ai”),不含 https://。 +/// SDK 所有网络请求都使用此域名。 +/// +/// \param extra 额外参数(可选) +/// +- (void)initSDKWithUserAccessToken:(NSString * _Nonnull)userAccessToken customDomain:(NSString * _Nonnull)customDomain extra:(NSDictionary * _Nonnull)extra SWIFT_METHOD_FAMILY(none); +/// Initialize SDK (legacy, 兼容旧版本) +/// \param hostName (已废弃)服务端 URL,被 customDomain 替代 +/// +/// \param appKey (已废弃)App key +/// +/// \param appSecret (已废弃)App secret +/// +/// \param bindToken (已废弃)握手 token,当 partnerToken 存在时自动从 JWT sub 字段解析 +/// +/// \param extra 额外参数 +/// +/// \param customDomain 服务端域名(如 “platform-us.plaud.ai”),不含 https:// +/// +/// \param partnerToken (已废弃)请使用 userAccessToken 参数。User Access Token (JWT) +/// +- (void)initSDKWithHostName:(NSString * _Nonnull)hostName appKey:(NSString * _Nonnull)appKey appSecret:(NSString * _Nonnull)appSecret bindToken:(NSString * _Nonnull)bindToken extra:(NSDictionary * _Nonnull)extra customDomain:(NSString * _Nullable)customDomain partnerToken:(NSString * _Nullable)partnerToken SWIFT_METHOD_FAMILY(none); +/// 动态更新 User Access Token +/// 可在 SDK 初始化后调用,token 刷新时使用 +/// \param token User Access Token (JWT) +/// +- (void)setUserAccessToken:(NSString * _Nullable)token; +/// (已废弃)请使用 setUserAccessToken +- (void)setPartnerToken:(NSString * _Nullable)token SWIFT_DEPRECATED_MSG("", "setUserAccessToken:"); +/// 检查 Partner API 数据是否已准备好 +- (BOOL)isPartnerDataReady SWIFT_WARN_UNUSED_RESULT; ++ (NSString * _Nonnull)getTestAppKey:(BOOL)beta SWIFT_WARN_UNUSED_RESULT; ++ (NSString * _Nonnull)getTestAppSecret:(BOOL)beta SWIFT_WARN_UNUSED_RESULT; +- (void)depairWithClear:(BOOL)clear; +- (void)setDeviceWiFiWithOpen:(BOOL)open; +/// 结束 WiFi 快传模式(WiFi 断开后调用,恢复 BLE 正常行为) +- (void)endWiFiTransfer; +- (void)setDeviceBindingWithToken:(NSString * _Nonnull)token; +/// Start scan +/// @see stopScan() +/// @see Callback bleScanResult +- (void)startScan; +/// End scan +/// @see startScan() +- (void)stopScan; +- (BOOL)isConnected SWIFT_WARN_UNUSED_RESULT; +/// Connect bluetooth device +/// \param bleDevice Wrapped bluetooth device +/// +/// \param deviceToken device token +/// @see Callback bleConnectState +/// @see Callback bleBind +/// +- (void)connectBleDeviceWithBleDevice:(BleDevice * _Nonnull)bleDevice deviceToken:(NSString * _Nonnull)deviceToken; +/// Connect bluetooth device +/// \param bleDevice Wrapped bluetooth device +/// @see Callback bleConnectState +/// @see Callback bleBind +/// +- (void)connectBleDeviceWithBleDevice:(BleDevice * _Nonnull)bleDevice; +/// Disconnect bluetooth connection +- (void)disconnect; +- (void)tryReconnectLastDevice; +/// Read recorder status, return state and privacy status +/// @see Callback blePenState +- (void)getState; +/// Read recorder remaining space +/// @see Callback bleStorage +- (void)getStorage; +/// Wifi sync switch +/// @see Callback onWifiSyncEnabled +- (void)getWifiSyncEnable; +/// Wifi sync switch +/// \param value 0: off 1: on +/// +- (void)setWifiSyncEnableWithValue:(NSInteger)value; +/// Initiate idle sync Wi-Fi test +/// \param wifiIndex Wi-Fi number (4 bytes) +/// +- (void)setWifiSyncTestWithWifiIndex:(uint32_t)wifiIndex; +/// Get idle sync Wi-Fi test result +/// \param wifiIndex Wi-Fi number (4 bytes) +/// +- (void)getWifiSyncTestResultWithWifiIndex:(uint32_t)wifiIndex; +/// Get battery level status +/// @see Callback blePowerChange +/// @see Callback bleChargingState +- (void)getChargingState; +/// Set microphone gain +/// \param value Microphone gain value, range 0 - 30 +/// +- (void)setMicGainWithValue:(NSInteger)value; +/// Get microphone gain +/// @see bleMicGain +- (void)readMicGain; +/// Enable U disk mode +/// \param onOff 1 enable; 0 disable +/// +- (void)setUDiskModeOnOff:(BOOL)onOff; +- (BOOL)checkIsRecording SWIFT_WARN_UNUSED_RESULT; +- (BOOL)checkIsDownloading SWIFT_WARN_UNUSED_RESULT; +/// Start recording +/// If recording starts successfully, need to call syncFile to sync file yourself +/// Can display real-time recording duration through sync file offset +/// @see Callback bleRecordStart +- (void)startRecord; +/// Wake/sleep setting +/// 0: sleep; 1: wake +- (void)setDeviceActiveWithStatus:(NSInteger)status; +/// Stop current recording +/// @see Callback bleRecordStop +- (void)stopRecord; +/// Set device name +- (void)setDeviceName:(NSString * _Nonnull)name; +- (NSInteger)getCurrentSessionID SWIFT_WARN_UNUSED_RESULT; +/// Pause recording +/// Resume through resumeRecord() +/// @see Callback bleRecordPause +- (void)pauseRecord; +/// Resume recording +/// @see Callback bleRecordResume +- (void)resumeRecord; +/// Get session list (get file list after a certain sessionId) +/// This command is not available during recording +/// This command is not available in U disk mode +/// \param uid Used to distinguish different commands +/// +/// \param sessionId Which file to start syncing from, 0 means sync all +/// @see Callback bleFileList +/// +- (void)getFileListWithStartSessionId:(NSInteger)startSessionId; +/// This command is not available during recording +/// This command is not available in U disk mode +/// \param sessionId File id +/// Query file corresponding to this sessionId (get real-time recording file length after real-time recording ends) +/// @see Callback bleFileList +/// +- (void)getFileWithSessionId:(NSInteger)sessionId; +/// Sync (download) file +/// \param sessionId Recording file unique id +/// +/// \param start Recording file start position (bytes) +/// +/// \param end Sync to where? Generally pass 0, means sync to file end (bytes) +/// @see Callback bleSyncFileHead +/// @see Callback bleSyncFileTail +/// @see Callback bleData +/// @see Callback bleDecodeFail +/// @see Callback bleDataComplete +/// @see Callback blePcmData +/// +- (void)syncFileWithSessionId:(NSInteger)sessionId start:(NSInteger)start end:(NSInteger)end; +/// Download composite file (complete file) +/// \param sessionId File unique ID +/// +/// \param desiredOutputPath Desired output path (without extension) +/// +/// \param format Output format. Options: .wav (recommended, playable), .pcm (raw audio data) +/// @see Callback bleDownloadFile +/// +- (void)downloadFileWithSessionId:(NSInteger)sessionId desiredOutputPath:(NSString * _Nonnull)desiredOutputPath format:(enum PlaudDownloadFormat)format; +/// Stop file download +/// @see Callback bleDownloadFileStop +- (void)stopDownloadFile; +/// 导出音频文件(与 Android SDK 接口一致) +/// 此方法会自动完成以下步骤: +///
    +///
  1. +/// 检查本地是否已有缓存文件 +///
  2. +///
  3. +/// 如果没有,从设备下载文件 +///
  4. +///
  5. +/// 进行 E2EE 解密(如果需要) +///
  6. +///
  7. +/// 转换为目标格式并保存 +///
  8. +///
+///
    +///
  • +/// Example: +///
  • +///
+/// \code +/// // Android: +/// // NiceBuildSdk.exportAudio(sessionId, outputDir, format, channels, callback) +/// // +/// // iOS: +/// deviceAgent.exportAudio( +/// sessionId: 1234567890, +/// outputDir: documentsPath, +/// format: .wav, +/// channels: 1, +/// callback: self +/// ) +/// +/// \endcode\param sessionId 录音文件唯一标识 +/// +/// \param outputDir 输出目录路径 +/// +/// \param format 输出格式 (.wav 推荐, .pcm) +/// +/// \param channels 声道数(默认 1,单声道) +/// +/// \param callback 导出回调(进度、完成、错误) +/// +- (void)exportAudioWithSessionId:(NSInteger)sessionId outputDir:(NSString * _Nonnull)outputDir format:(enum AudioExportFormat)format channels:(NSInteger)channels callback:(id _Nonnull)callback; +/// End file sync (download) +/// @see Callback bleSyncFileStop +- (void)stopSyncFile; +/// Delete file +/// \param sessionId Recording file unique id +/// @see Callback bleDeleteFile +/// +- (void)deleteFileWithSessionId:(NSInteger)sessionId; +/// Clear all files +/// @see Callback bleClearAllFile +- (void)clearAllFiles; +/// Factory reset +/// No callback +- (void)restoreFactory; +/// Get idle sync WiFi configuration +/// \param wifiIndex Wi-Fi number (4 bytes) +/// +- (void)getWifiSyncConfigWithWifiIndex:(uint32_t)wifiIndex; +/// Set idle sync WiFi configuration +/// \param operation Operation type 1: add, 2: modify) +/// +/// \param wifiIndex Wi-Fi number (4 bytes) +/// +/// \param ssid Wi-Fi SSID +/// +/// \param password Wi-Fi password +/// +- (void)setWifiSyncConfigWithOperation:(NSInteger)operation wifiIndex:(uint32_t)wifiIndex ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password; +/// Get idle sync WiFi list +- (void)getWifiSyncList; +/// Delete idle sync WiFi configuration +/// \param wifiIndices Array of Wi-Fi numbers to delete (each number is 4 bytes) +/// +- (void)deleteWifiSyncConfigWithWifiIndices:(NSArray * _Nonnull)wifiIndices; +@end + + + + + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (void)onBinaryFileReqWithType:(NSInteger)type packageOffset:(NSInteger)packageOffset packageSize:(NSInteger)packageSize endStatus:(NSInteger)endStatus; +- (void)onBinaryFileEndWithResult:(NSInteger)result; +@end + + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// Clears the stored SDK credentials (AppKey and AppSecret) from UserDefaults +- (void)clearSDKCredentials; +@end + + + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// Show update confirmation alert +/// \param versionInfo version information +/// +/// \param completion user selection callback +/// +- (void)showUpdateConfirmationWithVersionInfo:(LatestVersionResponse * _Nonnull)versionInfo completion:(void (^ _Nonnull)(BOOL))completion; +/// Simplified check for latest version for Objective-C +/// \param model Device model (required) +/// +/// \param snType Device type, options: note, notepin, notepro, other, default: notepin +/// +/// \param versionType Version type, options: T, G, V, default: V +/// +/// \param hasUpdate Callback with update available flag and version info +/// +/// \param failure Failure callback with error message +/// +- (void)checkLatestVersionForModel:(NSString * _Nonnull)model snType:(NSString * _Nonnull)snType versionType:(NSString * _Nonnull)versionType hasUpdate:(void (^ _Nonnull)(BOOL, LatestVersionResponse * _Nullable))hasUpdate failure:(void (^ _Nonnull)(NSString * _Nonnull))failure; +/// Simplified download update for Objective-C +/// \param versionInfo Version information to download +/// +/// \param progress Progress callback with percentage (0.0 to 1.0) +/// +/// \param success Success callback with local file path +/// +/// \param failure Failure callback with error message +/// +- (void)downloadUpdateForVersion:(LatestVersionResponse * _Nonnull)versionInfo progress:(void (^ _Nonnull)(float))progress success:(void (^ _Nonnull)(NSString * _Nonnull))success failure:(void (^ _Nonnull)(NSString * _Nonnull))failure; +@end + +@class PlaudFirmwareCheckResult; +enum PlaudFirmwarePhase : NSInteger; +@class PlaudFirmwareUpdateResult; + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// 上报设备元数据(电量、固件版本、存储等) +/// 连接成功后 SDK 自动调用,App 层通常无需手动调用 +- (void)reportDeviceMetadata; +- (void)checkFirmwareUpdateWithCompletion:(void (^ _Nonnull)(PlaudFirmwareCheckResult * _Nonnull))completion; +- (void)startFirmwareUpdateWithProgress:(void (^ _Nonnull)(enum PlaudFirmwarePhase, float))progress completion:(void (^ _Nonnull)(PlaudFirmwareUpdateResult * _Nonnull))completion; +- (void)pushFirmwareFileWithFilePath:(NSString * _Nonnull)filePath toVersion:(NSString * _Nonnull)toVersion progress:(void (^ _Nonnull)(enum PlaudFirmwarePhase, float))progress completion:(void (^ _Nonnull)(PlaudFirmwareUpdateResult * _Nonnull))completion; +@end + + +@class BleFile; +@class BleRecordMarkingTag; + +@interface PlaudDeviceAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (void)bleScanResultWithBleDevices:(NSArray * _Nonnull)bleDevices; +- (void)bleScanOverTime; +- (void)bleAppKeyStateWithResult:(NSInteger)result; +- (void)bleConnectStateWithState:(NSInteger)state; +- (void)bleBindWithSn:(NSString * _Nullable)sn status:(NSInteger)status protVersion:(NSInteger)protVersion timezone:(NSInteger)timezone; +- (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; +- (void)bleStorageWithTotal:(NSInteger)total free:(NSInteger)free duration:(NSInteger)duration; +- (void)blePowerChangeWithPower:(NSInteger)power oldPower:(NSInteger)oldPower; +- (void)bleChargingStateWithIsCharging:(BOOL)isCharging level:(NSInteger)level; +- (void)bleFileListWithBleFiles:(NSArray * _Nonnull)bleFiles; +- (void)bleDataComplete; +- (void)bleRecordStartWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime; +- (void)bleRecordStopWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize; +- (void)bleRecordPauseWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize; +- (void)bleRecordResumeWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime; +- (void)bleSyncFileHeadWithSessionId:(NSInteger)sessionId status:(NSInteger)status; +- (void)bleSyncFileTailWithSessionId:(NSInteger)sessionId crc:(NSInteger)crc; +- (void)bleDataWithSessionId:(NSInteger)sessionId start:(NSInteger)start data:(NSData * _Nonnull)data; +- (void)blePcmDataWithSessionId:(NSInteger)sessionId millsec:(NSInteger)millsec pcmData:(NSData * _Nonnull)pcmData isMusic:(BOOL)isMusic; +- (void)bleDecodeFailWithStart:(NSInteger)start; +- (void)bleSyncFileStop; +- (void)bleDeleteFileWithSessionId:(NSInteger)sessionId status:(NSInteger)status; +- (void)bleDepair:(NSInteger)status; +- (void)bleMicGain:(NSInteger)value; +- (void)onSyncIdleWifiConfigReceivedWithIndex:(uint32_t)index ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password; +- (void)onSyncIdleWifiConfigSetWithResult:(NSInteger)result; +- (void)onSyncIdleWifiListReceivedWithList:(NSArray * _Nonnull)list; +- (void)onSyncIdleWifiDeleteResultWithResult:(NSInteger)result; +- (void)onSyncIdleWifiTestStartedWithIndex:(uint32_t)index; +- (void)onSyncIdleWillStartWithSeconds:(NSInteger)seconds; +- (void)onSyncIdleWifiTestResultWithIndex:(uint32_t)index result:(NSInteger)result rawCode:(NSInteger)rawCode; +- (void)bleSyncWhenIdleEnabled:(NSInteger)value; +- (void)bleUDiskErrWithFuncName:(NSString * _Nonnull)funcName; +- (void)bleWiFiOpen:(NSInteger)status :(NSString * _Nonnull)wifiName :(NSString * _Nonnull)wholeName :(NSString * _Nonnull)wifiPass; +- (void)bleDeviceNameWithName:(NSString * _Nullable)name; +- (void)bleFotaResultWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg; +- (void)bleFotaPackReqWithUid:(NSInteger)uid start:(NSInteger)start end:(NSInteger)end; +- (void)bleFotaPackFinWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg; +- (void)bleOtaDataSendFail; +- (void)bleRateWithLossRate:(double)lossRate rate:(NSInteger)rate instantRate:(NSInteger)instantRate; +- (void)bleSetActiveWithStatus:(NSInteger)status; +- (void)bleHeartbeatWithStatus:(NSInteger)status; +- (void)bleBatteryMode:(NSInteger)mode; +- (void)bleDeviceStatusWithStatus:(NSArray * _Nonnull)status; +- (void)bleNewFeatureWithData:(NSData * _Nonnull)data; +- (void)bleGetRecordMarkingTagsWithUid:(NSInteger)uid totals:(NSInteger)totals index:(NSInteger)index tags:(NSArray * _Nonnull)tags; +- (void)deviceLogDataWithStart:(NSInteger)start data:(NSData * _Nonnull)data logType:(NSInteger)logType; +- (void)onGetDeviceLogListWithData:(NSData * _Nonnull)data; +- (void)onSyncDeviceLogStartWithData:(NSData * _Nonnull)data; +- (void)onSyncDeviceLogStop; +- (void)onSyncDeviceLogEndWithData:(NSData * _Nonnull)data; +- (void)onDeviceLogDeletedWithData:(NSData * _Nonnull)data; +- (void)bleUpdatePowerLowErr; +- (void)bleDeviceDisconnectErr; +- (void)bleStateWithPowered:(BOOL)powered; +- (void)bleHandshakeWaitWithTimeout:(NSInteger)timeout; +- (void)blePenTimeWithStamp:(NSInteger)stamp timezone:(NSInteger)timezone zoneMin:(NSInteger)zoneMin; +- (void)blePasswordResetWithPassword:(NSInteger)password; +- (void)bleBacklightDuration:(NSInteger)duration; +- (void)bleBacklightBright:(NSInteger)bright; +- (void)bleLanguage:(NSInteger)type; +- (void)bleRecScene:(NSInteger)scene; +- (void)bleRecMode:(NSInteger)mode; +- (void)bleVadSensitivity:(NSInteger)value; +- (void)bleVpuGain:(NSInteger)value; +- (void)bleSwitchHandler:(NSInteger)id; +- (void)bleAutoPowerOff:(NSInteger)value; +- (void)bleRawWaveEnabled:(NSInteger)value; +- (void)bleRecordingAfterDisConnetEnabled:(NSInteger)value; +- (void)bleFindMyState:(NSInteger)value; +- (void)bleVPUCLKState:(NSInteger)value; +- (void)bleStopRecordingAfterCharging:(NSInteger)value; +- (void)bleAutoClear:(BOOL)open; +- (void)bleVad:(BOOL)open; +- (void)bleWiFiClose:(NSInteger)status; +- (void)bleSetWiFiSsidWithStatus:(NSInteger)status; +- (void)bleGetWiFiSsidWithStatus:(NSInteger)status ssid:(NSString * _Nullable)ssid; +- (void)bleVoiceAbnormalWithStatus:(NSInteger)status; +- (void)bleWebsocketProfile:(NSInteger)type :(NSString * _Nullable)conent; +- (void)bleWebsocketTest:(NSInteger)status; +- (void)bleLedStateOnOff:(NSInteger)onOff; +- (void)bleSetLedStateOnOff:(NSInteger)onOff; +- (void)bleMarkingWithSessionId:(NSInteger)sessionId status:(NSInteger)status markList:(NSArray * _Nonnull)markList; +- (void)bleAnglesWithPitchAngle:(float)pitchAngle rollbackAngle:(float)rollbackAngle yawAngle:(float)yawAngle; +- (void)blePrivacyWithPrivacy:(NSInteger)privacy; +- (void)bleClearAllFileWithStatus:(NSInteger)status; +- (void)bleAlarmRecWithStart:(NSInteger)start duration:(NSInteger)duration repeatMode:(NSInteger)repeatMode; +- (void)onResetFindmyResultWithResult:(NSInteger)result; +- (void)onCommonParamsSetResultWithSuccess:(BOOL)success dataType:(NSInteger)dataType value:(NSString * _Nullable)value; +- (void)onCommonParamsGetResultWithSuccess:(BOOL)success dataType:(NSInteger)dataType value:(NSString * _Nullable)value; +- (void)onSetSoundPlusTokenResultWithLicenseKey:(NSString * _Nonnull)licenseKey; +- (void)onGetSDFlashCIDResultWithCid:(NSString * _Nonnull)cid; +@end + + +SWIFT_PROTOCOL("_TtP19PlaudDeviceBasicSDK24PlaudDeviceAgentProtocol_") +@protocol PlaudDeviceAgentProtocol +@optional +/// AppKey verification result +/// \param result Verification result 0 temporary 1 success 2 failure +/// +- (void)bleAppKeyStateWithResult:(NSInteger)result; +@required +/// Return status +/// \param state Customized according to project (4099(0x00001003) indicates recorder is recording, 1 seems to be recording) +/// +/// \param privacy Privacy setting status +/// +/// \param keySatte Toggle switch status (new in protocol version 4) +/// +/// \param uDisk Whether U disk is enabled +/// Other two parameters are directly placed in BleAgent +/// +/// \param scene Current recording scene (0 when not recording) +/// +/// \param findMyToken Whether findmy token exists (NotePin device) +/// +/// \param hasSndpKey Whether sound plus license token exists +/// +/// \param deviceAccessToken Whether device idle sync AccessToken exists +/// +/// \param sessionId Current session id (0 when not recording) +/// +- (void)blePenStateWithState:(NSInteger)state privacy:(NSInteger)privacy keyState:(NSInteger)keyState uDisk:(NSInteger)uDisk findMyToken:(NSInteger)findMyToken hasSndpKey:(NSInteger)hasSndpKey deviceAccessToken:(NSInteger)deviceAccessToken; +@optional +/// Device name +/// \param name Device name +/// +- (void)bleDeviceNameWithName:(NSString * _Nullable)name; +/// Bluetooth device scan callback +/// \param bleDevices Bluetooth device list +/// +- (void)bleScanResultWithBleDevices:(NSArray * _Nonnull)bleDevices; +/// Scan timeout end +/// @see startScan +- (void)bleScanOverTime; +/// Bluetooth connection status +///
    +///
  • +/// Parameters state: 0 disconnected or not connected; 1 connection successful; 2 connection failed +///
  • +///
+- (void)bleConnectStateWithState:(NSInteger)state; +/// Connection callback +/// \param status Status, 0: success, >0: rejected 1: Token mismatch 2: Screen project, currently recording, user cannot confirm temporarily 3: Screen project, user manually rejected 255: Recorder not in connection mode, reject handshake request in non-connection mode (unique to Heili three-stage switch) <0 verification failed -1: no SSN -2: network exception -3: server data exception or verification incorrect +/// +/// \param protVersion Protocol version number +/// +/// \param timezone Current timezone on pen side +/// +- (void)bleBindWithSn:(NSString * _Nullable)sn status:(NSInteger)status protVersion:(NSInteger)protVersion timezone:(NSInteger)timezone; +/// Microphone sensitivity +/// \param value 1- 30 +/// +- (void)bleMicGain:(NSInteger)value; +/// Device space +/// \param total Total space size (bytes) +/// +/// \param free Remaining space size (bytes) +/// +/// \param duration Recorder’s estimated remaining recording duration (milliseconds) +/// +- (void)bleStorageWithTotal:(NSInteger)total free:(NSInteger)free duration:(NSInteger)duration; +/// Battery level change +/// \param power Current battery level +/// +/// \param oldPower Previous battery level (used to determine low battery reminders from 20%->19% and 10%->9%) +/// +- (void)blePowerChangeWithPower:(NSInteger)power oldPower:(NSInteger)oldPower; +/// Battery level status +/// \param isCharging Whether charger is plugged in 0 not plugged in 1 plugged in (BleDevice has an isCharging property that will be set after this callback, can compare previous value to determine charging status change) +/// +/// \param level Battery level 0-100 +/// +- (void)bleChargingStateWithIsCharging:(BOOL)isCharging level:(NSInteger)level; +/// Get file list callback +/// \param bleFiles File list +/// +- (void)bleFileListWithBleFiles:(NSArray * _Nonnull)bleFiles; +/// Start recording callback +/// \param sessionId Recording file unique id, 0 timezone timestamp, to convert to phone current timestamp need to subtract timezone +/// +/// \param start Recorded duration (file offset, bytes) (returns 0 if not recording before; if recording before, returns recorded duration) +/// +/// \param status 0: success, >0: failure 1: space full; 2: U disk mode; 3: hardware exception; 4: currently busy; 255: wrong mode (recorder not in recording mode, unique to Heili three-stage switch) +/// +/// \param scene Recording mode +/// +/// \param startTime Start time +/// +- (void)bleRecordStartWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime reason:(NSInteger)reason; +/// End recording callback +/// \param sessionId Recording file unique id, 0 timezone timestamp, to convert to phone current timestamp need to subtract timezone +/// +/// \param reason Reason (others undefined) +/// 1.MMI_REC_STOP_FROM_DEV /// Device side stop recording +/// 2.MMI_REC_STOP_FROM_APP /// APP side stop recording +/// 3.MMI_REC_STOP_BY_SPLIT /// Automatic time slice stop recording +/// 4.MMI_REC_STOP_BY_SWITCH /// Switch toggle stop recording) +/// +/// \param fileExist Whether file is saved +/// +/// \param fileSize File size (if available, bytes) +/// +- (void)bleRecordStopWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize; +/// Recording pause callback +/// \param sessionId Recording file unique id, 0 timezone timestamp, to convert to phone current timestamp need to subtract timezone +/// +/// \param reason Reason (currently undefined) +/// +/// \param fileExist Whether file is saved +/// +/// \param fileSize File size (if available, bytes) +/// +- (void)bleRecordPauseWithSessionId:(NSInteger)sessionId reason:(NSInteger)reason fileExist:(BOOL)fileExist fileSize:(NSInteger)fileSize; +/// Recording resume +///
    +///
  • +/// Parameters: +///
  • +///
  • +/// sessionId: Recording file unique id, 0 timezone timestamp, to convert to phone current timestamp need to subtract timezone +///
  • +///
  • +/// start: Recorded duration (file offset, bytes) (returns 0 if not recording before; if recording before, returns recorded duration) +///
  • +///
  • +/// status: 0: success, >0: failure 1: space full; 2: U disk mode; 3: hardware exception +///
  • +///
  • +/// scene: Recording mode (depends on project, version number) +///
  • +///
  • +/// startTime: Start time (depends on project, version number) +///
  • +///
+- (void)bleRecordResumeWithSessionId:(NSInteger)sessionId start:(NSInteger)start status:(NSInteger)status scene:(NSInteger)scene startTime:(NSInteger)startTime; +/// Sync (download) file start callback +/// \param sessionId File unique id +/// +/// \param status Status, 0: success; >0: failure 1: file system currently unavailable 2: file does not exist 3: interrupted +/// +- (void)bleSyncFileHeadWithSessionId:(NSInteger)sessionId status:(NSInteger)status; +/// Sync (download) file end +/// \param sessionId File unique id +/// +/// \param crc File checksum code, verify file integrity (don’t use after recorder changed to egg file saving) +/// +- (void)bleSyncFileTailWithSessionId:(NSInteger)sessionId crc:(NSInteger)crc; +/// Voice data return +/// \param sessionId File id, protocol 7 support +/// +/// \param start Data offset in undecoded file (bytes) +/// +/// \param data Data (may be ogg data or opus pure audio, determined by firmware) +/// +- (void)bleDataWithSessionId:(NSInteger)sessionId start:(NSInteger)start data:(NSData * _Nonnull)data; +/// Return decoded pcm data +/// \param sessionId File id, protocol 7 support +/// +/// \param millsec Current voice millisecond value +/// +/// \param pcmData Decoded data, will not callback if decoding not required when starting recording; if recording is dual channel, will process to single channel; music mode is dual channel 48k sampling rate, will process to single channel 48k, not usable for recognition +/// +/// \param isMusic Is it music mode? Music mode returned pcm is not normal pcm, is 6 shorts take one, used to generate waveform, cannot be used for recognition +/// +- (void)blePcmDataWithSessionId:(NSInteger)sessionId millsec:(NSInteger)millsec pcmData:(NSData * _Nonnull)pcmData isMusic:(BOOL)isMusic; +/// Data reception completed +- (void)bleDataComplete; +/// Voice data decoding failed +/// \param start Data offset in undecoded file +/// +- (void)bleDecodeFailWithStart:(NSInteger)start; +/// Sync file terminated +- (void)bleSyncFileStop; +/// Sync composite file callback +/// \param sessionId File unique id +/// +/// \param sessionId Output file path +/// +/// \param status 0 normal -1 error +/// +/// \param progress Progress 0-100 +/// +/// \param tips Tips +/// +- (void)bleDownloadFileWithSessionId:(NSInteger)sessionId desiredOutputPath:(NSString * _Nonnull)desiredOutputPath status:(NSInteger)status progress:(NSInteger)progress tips:(NSString * _Nonnull)tips; +/// Sync file terminated +- (void)bleDownloadFileStop; +/// Delete file +/// \param sessionId Protocol version 7 support +/// +/// \param status Status, 0: delete successful; 1: recording not allowed to delete 2: favorited not allowed to delete; 3: playing not allowed to delete +/// +- (void)bleDeleteFileWithSessionId:(NSInteger)sessionId status:(NSInteger)status; +/// Unbind +/// \param status 0 success; 1 working 2 upgrading +/// +- (void)bleDepair:(NSInteger)status; +- (void)onWifiSyncConfigReceivedWithIndex:(uint32_t)index ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password; +/// Set idle sync WiFi configuration result +/// \param result Result code (0: success, 1: already exists, 2: device not found for deletion, 3: change not found, 4: operation code exception, 5: queue full, other: other errors) +/// +- (void)onWifiSyncConfigSetWithResult:(NSInteger)result; +/// Idle sync WiFi list reception +/// \param list WiFi index list +/// +- (void)onWifiSyncListReceivedWithList:(NSArray * _Nonnull)list; +/// Idle sync WiFi delete result +/// \param result Result code (0: success, -1: failure) +/// +- (void)onWifiSyncDeleteResultWithResult:(NSInteger)result; +/// Idle sync WiFi test start +/// \param index WiFi number +/// +- (void)onWifiSyncTestStartedWithIndex:(uint32_t)index; +/// Idle sync about to start +/// \param second Seconds until start +/// +- (void)onWifiSyncWillStartWithSeconds:(NSInteger)seconds; +/// Idle sync WiFi test result +/// \param index WiFi number +/// +/// \param result Test result: 0, test successful 1, wifi not found 2, Wifi password incorrect 3, Wifi connection failed 4, data transmission failed +/// +/// \param rawCode Original error code +/// +- (void)onWifiSyncTestResultWithIndex:(uint32_t)index result:(NSInteger)result rawCode:(NSInteger)rawCode; +- (void)onWifiSyncUrlWithUrl:(NSString * _Nonnull)url; +/// WiFi RSSI measurement request confirmed +/// \param status Status code (0: success, other: error) +/// +- (void)onWifiRssiRequestConfirmedWithStatus:(NSInteger)status; +- (void)onSdkFetchPermissionResultWithPass:(BOOL)pass tips:(NSString * _Nonnull)tips; +- (void)onSdkCheckPermissionResultWithPass:(BOOL)pass tips:(NSString * _Nonnull)tips; +- (void)onSdkCheckResourceResultWithPass:(BOOL)pass tips:(NSString * _Nonnull)tips; +/// Idle sync +/// \param value 0: off 1: on +/// +- (void)onWifiSyncEnabled:(NSInteger)value; +- (void)onCommonMsgChannelWithType:(NSInteger)type value:(NSInteger)value tips:(NSString * _Nonnull)tips; +/// WiFi open notification +/// \param status 0 normal, >1 forbidden to open 1 recording status, 2 U disk status +/// +/// \param wifiName Recording pen hotspot name +/// +/// \param wholeName Determine whether to append 4-digit sn suffix name +/// +/// \param wifiPass Recording pen hotspot password +/// +- (void)bleWiFiOpen:(NSInteger)status :(NSString * _Nonnull)wifiName :(NSString * _Nonnull)wholeName :(NSString * _Nonnull)wifiPass; +/// OTA notification +/// \param uid Identifier +/// +/// \param status Status 0 normal, 1. upgrade failed 2. version information mismatch 3. FLASH write failed 4. file too large 5. too many attempts 6. U disk mode; 7. recording in progress; 8. U disk insufficient remaining space; 9. working; 10. G101 glasses only allow upgrade in charging mode; 11. G101 glasses insufficient battery; 12. G101 glasses received upgrade protocol and preparing to adjust to OTA_MODE; 255: mode incorrect (recording pen not in recording mode, specific to Heili three-way switch) +/// +/// \param errmsg Protocol version 4, if upgrade successful, returns upgraded version here; if failed, still returns error message. +/// +- (void)bleFotaResultWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg; +/// OTA package request, recording pen requests to send upgrade package data +/// \param uid Identifier +/// +/// \param start Start position (bytes) +/// +/// \param end End position (bytes) +/// +- (void)bleFotaPackReqWithUid:(NSInteger)uid start:(NSInteger)start end:(NSInteger)end; +/// OTA package reception completed +/// \param uid Identifier +/// +/// \param status Status 0 normal, 1. upgrade failed 2. version information mismatch 3. FLASH write failed 4. file too large 5. too many attempts 6. U disk mode; 7. recording in progress; 8. U disk insufficient remaining space +/// +/// \param errmsg Protocol version 4, if upgrade successful, returns upgraded version here; if failed, still returns error message. +/// +- (void)bleFotaPackFinWithUid:(NSInteger)uid status:(NSInteger)status errmsg:(NSString * _Nullable)errmsg; +/// OTA data send failed +- (void)bleOtaDataSendFail; +/// Wake/sleep setting +/// 0: sleep; 1: wake +- (void)bleSetActiveWithStatus:(NSInteger)status; +- (void)bleCommonSettingWithSetting:(NSInteger)setting; +/// Bluetooth transmission rate callback +/// \param lossRate Packet loss rate +/// +/// \param rate Average rate, bytes/S +/// +/// \param instantRate Real-time rate +/// +- (void)bleRateWithLossRate:(double)lossRate rate:(NSInteger)rate instantRate:(NSInteger)instantRate; +@end + +/// 文件下载输出格式 +typedef SWIFT_ENUM(NSInteger, PlaudDownloadFormat, open) { +/// PCM 格式 - 原始音频数据,需要知道采样率才能正确播放 + PlaudDownloadFormatPcm = 0, +/// MP3 格式 - 暂不支持 + PlaudDownloadFormatMp3 = 1, +/// WAV 格式(推荐)- 带头信息的 PCM,可直接播放 + PlaudDownloadFormatWav = 2, +}; + + +/// E2EE encryption header for Plaud audio files. +/// The header is 512 bytes and contains encryption metadata. +/// NotePro audio files have two encryption layers: +///
    +///
  1. +/// BLE Transport Layer - ChaCha20-Poly1305 (handled by BleAgent) +///
  2. +///
  3. +/// File Content Layer - RSA encrypted key header + ChaCha20 encrypted data (handled here) +///
  4. +///
+SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK18PlaudEncryptHeader") +@interface PlaudEncryptHeader : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger headerSize;) ++ (NSInteger)headerSize SWIFT_WARN_UNUSED_RESULT; +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull magicString;) ++ (NSString * _Nonnull)magicString SWIFT_WARN_UNUSED_RESULT; +@property (nonatomic, readonly, copy) NSData * _Nonnull magic; +@property (nonatomic, readonly) uint16_t version; +@property (nonatomic, readonly) uint16_t headerSizeValue; +@property (nonatomic, readonly) uint32_t crc; +@property (nonatomic, readonly, copy) NSData * _Nonnull userId; +@property (nonatomic, readonly) uint16_t fileType; +@property (nonatomic, readonly) uint16_t channel; +@property (nonatomic, readonly) uint16_t encryptType; +@property (nonatomic, readonly) uint32_t duration; +@property (nonatomic, readonly, copy) NSData * _Nonnull reserved; +@property (nonatomic, readonly) uint32_t counter; +@property (nonatomic, readonly, copy) NSData * _Nonnull nonce; +@property (nonatomic, readonly) uint32_t segment; +@property (nonatomic, readonly, copy) NSData * _Nonnull algParams; +@property (nonatomic, readonly, copy) NSData * _Nonnull keyCipher; +/// Parse header from raw data +- (nullable instancetype)initWithData:(NSData * _Nonnull)data OBJC_DESIGNATED_INITIALIZER; +/// Read header from file ++ (PlaudEncryptHeader * _Nullable)fromFileWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +/// Check if the file is encrypted (magic == “PLAUD.AI”) +@property (nonatomic, readonly) BOOL isEncrypted; +/// Get userId as string +@property (nonatomic, readonly, copy) NSString * _Nonnull userIdString; +@property (nonatomic, readonly, copy) NSString * _Nonnull description; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK17PlaudFileUploader") +@interface PlaudFileUploader : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudFileUploader * _Nonnull shared;) ++ (PlaudFileUploader * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +@property (nonatomic, strong) BleDevice * _Nullable device; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +- (void)uploadRecordingWithSn:(NSString * _Nonnull)sn sessionId:(NSInteger)sessionId duration:(double)duration onProgress:(void (^ _Nonnull)(double))onProgress onSuccess:(void (^ _Nonnull)(NSDictionary * _Nonnull))onSuccess onFailure:(void (^ _Nonnull)(NSError * _Nonnull))onFailure; +/// Upload log file +/// \param filePath Path to the log file +/// +/// \param sn Device serial number +/// +/// \param onProgress Upload progress callback (0.0 to 1.0) +/// +/// \param onSuccess Success callback with upload result +/// +/// \param onFailure Failure callback with error +/// +- (void)uploadLogFileWithFilePath:(NSString * _Nonnull)filePath sn:(NSString * _Nonnull)sn onProgress:(void (^ _Nonnull)(double))onProgress onSuccess:(void (^ _Nonnull)(NSDictionary * _Nonnull))onSuccess onFailure:(void (^ _Nonnull)(NSError * _Nonnull))onFailure; ++ (NSString * _Nonnull)calculateSnTypeWithSn:(NSString * _Nonnull)sn SWIFT_WARN_UNUSED_RESULT; +@end + + +/// 固件版本检查结果 +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK24PlaudFirmwareCheckResult") +@interface PlaudFirmwareCheckResult : NSObject +@property (nonatomic, readonly) BOOL hasUpdate; +@property (nonatomic, readonly, copy) NSString * _Nonnull currentVersion; +@property (nonatomic, readonly, copy) NSString * _Nonnull latestVersion; +@property (nonatomic, readonly) NSInteger versionCode; +@property (nonatomic, readonly, copy) NSString * _Nonnull releaseNotes; +@property (nonatomic, readonly, copy) NSString * _Nonnull downloadUrl; +@property (nonatomic, readonly, copy) NSString * _Nonnull md5; +@property (nonatomic, readonly) BOOL isForce; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +/// 固件升级进度 +typedef SWIFT_ENUM(NSInteger, PlaudFirmwarePhase, open) { + PlaudFirmwarePhaseDownloading = 0, + PlaudFirmwarePhaseInstalling = 1, + PlaudFirmwarePhaseRestarting = 2, + PlaudFirmwarePhaseComplete = 3, +}; + + +/// 固件升级结果 +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK25PlaudFirmwareUpdateResult") +@interface PlaudFirmwareUpdateResult : NSObject +@property (nonatomic, readonly) BOOL success; +@property (nonatomic, readonly, copy) NSString * _Nonnull version; +@property (nonatomic, readonly, copy) NSString * _Nullable errorMessage; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + + +/// Centralized log configuration manager for all Plaud SDK modules +/// Located in PenBleSDK to avoid reverse dependency issues +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudLogConfig") +@interface PlaudLogConfig : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudLogConfig * _Nonnull shared;) ++ (PlaudLogConfig * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Maximum number of log files to keep +@property (nonatomic, readonly) NSInteger maxFileCount; +/// Maximum age of log files in seconds (default: 7 days) +@property (nonatomic, readonly) NSTimeInterval maxFileAge; +/// Maximum size of individual log file in bytes (default: 10MB) +@property (nonatomic, readonly) int64_t maxFileSize; +/// Upload interval in seconds (DEBUG: 1 minute, RELEASE: 5 minutes) +@property (nonatomic, readonly) NSTimeInterval uploadInterval; +/// Upload timeout in seconds (default: 30 seconds) +@property (nonatomic, readonly) NSTimeInterval uploadTimeout; +/// Update log file management configuration +/// \param maxFileCount Maximum number of log files to keep (1-50) +/// +/// \param maxFileAge Maximum age of log files in seconds (1 hour - 30 days) +/// +/// \param maxFileSize Maximum size of individual log file in bytes (1MB - 100MB) +/// +- (void)updateFileConfigurationWithMaxFileCount:(NSInteger)maxFileCount maxFileAge:(NSTimeInterval)maxFileAge maxFileSize:(int64_t)maxFileSize; +/// Update upload configuration +/// \param uploadInterval Upload interval in seconds (60s - 3600s) +/// +/// \param uploadTimeout Upload timeout in seconds (10s - 300s) +/// +- (void)updateUploadConfigurationWithUploadInterval:(NSTimeInterval)uploadInterval uploadTimeout:(NSTimeInterval)uploadTimeout; +/// Reset configuration to default values +- (void)resetToDefaults; +/// Get current configuration as dictionary +- (NSDictionary * _Nonnull)getCurrentConfiguration SWIFT_WARN_UNUSED_RESULT; +/// Get max file age in days +@property (nonatomic, readonly) NSInteger maxFileAgeDays; +/// Get max file size in MB +@property (nonatomic, readonly) NSInteger maxFileSizeMB; +/// Get upload interval in minutes +@property (nonatomic, readonly) NSInteger uploadIntervalMinutes; +/// Get upload timeout in seconds +@property (nonatomic, readonly) NSInteger uploadTimeoutSeconds; +@end + + +@interface PlaudLogConfig (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +/// Validate current configuration +- (BOOL)validateConfiguration SWIFT_WARN_UNUSED_RESULT; +/// Get configuration description for debugging +- (NSString * _Nonnull)getConfigurationDescription SWIFT_WARN_UNUSED_RESULT; +@end + +@class NSURL; + +/// 加密日志导出器,生成与 Android SDK 兼容的 .plaud 格式 +/// 格式:ChaCha20(ZIP(log files + sdk_info.txt)) +SWIFT_CLASS_NAMED("PlaudLogEncryption") +@interface PlaudLogEncryption : NSObject ++ (NSURL * _Nullable)exportEncryptedLogs SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +/// Log file rotation manager +/// Responsible for unified management of log file switching logic, ensuring immediate switch to new file after upload +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK27PlaudLogFileRotationManager") +@interface PlaudLogFileRotationManager : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudLogFileRotationManager * _Nonnull shared;) ++ (PlaudLogFileRotationManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Force rotate current log file +/// Usually called after successful upload to ensure subsequent logs are written to new file +- (void)forceRotateCurrentLogFile; +/// Check and perform size-based rotation +/// \param filePath Log file path +/// +/// \param additionalSize Size of data to be written +/// +/// +/// returns: +/// Whether rotation was performed +- (BOOL)checkAndRotateIfNeededWithFilePath:(NSString * _Nonnull)filePath additionalSize:(int64_t)additionalSize SWIFT_WARN_UNUSED_RESULT; +/// Get current active log file path +- (NSString * _Nonnull)getCurrentLogFilePath SWIFT_WARN_UNUSED_RESULT; +/// Notify manager that upload is completed, suggest file rotation +- (void)notifyUploadCompleted; +@end + +typedef SWIFT_ENUM(NSInteger, PlaudLogUploadError, open) { + PlaudLogUploadErrorAlreadyUploading = 0, + PlaudLogUploadErrorDirectoryNotFound = 1, + PlaudLogUploadErrorPartialUpload = 2, +}; +static NSString * _Nonnull const PlaudLogUploadErrorDomain = @"PlaudDeviceBasicSDK.PlaudLogUploadError"; + + +/// Log upload manager for automatic periodic upload and management +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK21PlaudLogUploadManager") +@interface PlaudLogUploadManager : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudLogUploadManager * _Nonnull shared;) ++ (PlaudLogUploadManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Enable or disable automatic log upload +/// \param enabled true to enable auto upload, false to disable +/// +- (void)setAutoUploadEnabled:(BOOL)enabled; +/// Start automatic log upload timer +- (void)startAutoUpload; +/// Stop automatic log upload timer +- (void)stopAutoUpload; +/// Upload log files with progress tracking +/// \param onProgress Progress callback (0.0 to 1.0) +/// +/// \param onSuccess Success callback with upload results +/// +/// \param onFailure Failure callback with error +/// +- (void)uploadLogFilesOnProgress:(void (^ _Nonnull)(double))onProgress onSuccess:(void (^ _Nonnull)(NSDictionary * _Nonnull))onSuccess onFailure:(void (^ _Nonnull)(NSError * _Nonnull))onFailure; +/// Manually trigger log cleanup +- (void)cleanupLogFiles; +/// Get upload statistics +/// +/// returns: +/// Dictionary with upload statistics +- (NSDictionary * _Nonnull)getUploadStatistics SWIFT_WARN_UNUSED_RESULT; +/// Upload log files with specific device serial number +/// \param sn Device serial number +/// +/// \param onProgress Progress callback (0.0 to 1.0) +/// +/// \param onSuccess Success callback with upload results +/// +/// \param onFailure Failure callback with error +/// +- (void)uploadLogFilesWithDeviceSNWithSn:(NSString * _Nonnull)sn onProgress:(void (^ _Nonnull)(double))onProgress onSuccess:(void (^ _Nonnull)(NSDictionary * _Nonnull))onSuccess onFailure:(void (^ _Nonnull)(NSError * _Nonnull))onFailure; +/// Upload logs after recording upload completion +/// \param sn Device serial number +/// +/// \param sessionId Session ID +/// +/// \param onCompletion Completion callback +/// +- (void)uploadLogsAfterRecordingWithSn:(NSString * _Nonnull)sn sessionId:(NSInteger)sessionId onCompletion:(void (^ _Nonnull)(BOOL, NSError * _Nullable))onCompletion; +@end + + +/// PCM 文件播放器 - 直接播放 PCM 文件,避免 MP3 转换引入的噪音 +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudPCMPlayer") +@interface PlaudPCMPlayer : NSObject +@property (nonatomic, readonly) BOOL isPlaying; +@property (nonatomic, readonly) BOOL isPaused; +@property (nonatomic, readonly) NSTimeInterval duration; +@property (nonatomic, readonly) NSTimeInterval currentTime; +@property (nonatomic, copy) void (^ _Nullable onPlaybackFinished)(void); +@property (nonatomic, copy) void (^ _Nullable onError)(NSString * _Nonnull); +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +/// 加载 PCM 文件 +- (BOOL)loadFileWithPath:(NSString * _Nonnull)path SWIFT_WARN_UNUSED_RESULT; +/// 播放 +- (void)play; +/// 暂停 +- (void)pause; +/// 停止 +- (void)stop; +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudSDKLogger") +@interface PlaudSDKLogger : NSObject ++ (void)logEvent:(NSString * _Nonnull)eventName parameters:(NSDictionary * _Nullable)parameters; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@protocol PlaudWiFiAgentProtocol; + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK14PlaudWiFiAgent") +@interface PlaudWiFiAgent : NSObject +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) PlaudWiFiAgent * _Nonnull shared;) ++ (PlaudWiFiAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +@property (nonatomic, weak) id _Nullable delegate; +/// Device information needs to be passed from Bluetooth module +@property (nonatomic, strong) BleDevice * _Nullable bleDevice; +/// Whether currently downloading file +@property (nonatomic, readonly) BOOL isDownloading; +/// Current sync file sessionId +@property (nonatomic, readonly) NSInteger currentSessionId; +/// Whether connection has been established +@property (nonatomic, readonly) BOOL isConnected; +/// Get current download speed (KB/s) +@property (nonatomic, readonly) double currentDownloadSpeedKBps; +/// Get formatted download speed string +- (NSString * _Nonnull)getFormattedDownloadSpeed SWIFT_WARN_UNUSED_RESULT; +/// Whether currently batch downloading +@property (nonatomic, readonly) BOOL isDownloadingAll; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Enable SDK debug logs or callback logs +- (void)openLog:(BOOL)opened :(void (^ _Nullable)(NSString * _Nonnull))backBlock; +/// Use this method for iOS 11.0 and below, will loop to check if connected to specified WiFi until timeout +/// \param ssid WiFi name +/// +/// \param overtimeSec Timeout duration, default 30 seconds +/// +- (void)listenPort:(NSString * _Nonnull)ssid :(NSInteger)overtimeSec; +/// Connect to specified WiFi using WiFi name and password +/// iOS 11.0 and above use this method for direct WiFi connection, earlier versions need popup to guide user to settings for manual connection +/// \param ssid WiFi name +/// +/// \param passphrase Password +/// +/// \param overtimeSec Timeout duration, default 60 seconds +/// +- (void)connectWifi:(NSString * _Nonnull)ssid :(NSString * _Nonnull)passphrase :(NSInteger)overtimeSec SWIFT_AVAILABILITY(ios,introduced=11.0); +/// Disconnect +- (void)disconnect; +/// Check if currently connected to specified WiFi +/// \param ssid WiFi name +/// +/// +/// returns: +/// Whether connected +- (BOOL)isConnectedTo:(NSString * _Nonnull)ssid SWIFT_WARN_UNUSED_RESULT; +/// Get current connection status description +/// +/// returns: +/// Connection status description +- (NSString * _Nonnull)getConnectionStatusDescription SWIFT_WARN_UNUSED_RESULT; +/// Get current connected WiFi name +- (NSString * _Nullable)getCurrentWiFiName SWIFT_WARN_UNUSED_RESULT; +/// Get file list (app initiated cmd=11) +/// \param uid Request uid, new requests will naturally override old requests +/// +/// \param sessionId Starting sessionId +/// +/// \param single Whether to only get current file information, default false +/// +- (void)getFileList:(NSInteger)uid :(NSInteger)sessionId :(BOOL)single; +/// File sync (cmd=12) +/// \param sessionId Recording ID +/// +/// \param start Start position (file offset, not time) +/// +/// \param end End position (default 0, to end of file) +/// +/// \param scene Recording scene, default 1 +/// +- (void)syncFile:(NSInteger)sessionId :(NSInteger)start :(NSInteger)end :(NSInteger)scene; +/// Stop file sync (cmd=15) +/// \param sessionId Recording ID +/// +/// \param scene Scene, default 1 +/// +- (void)stopSyncFile:(NSInteger)sessionId :(NSInteger)scene; +/// Delete file (cmd=14) +/// \param sessionId Recording ID +/// +/// \param scene Scene, default 1 +/// +- (void)deleteFile:(NSInteger)sessionId :(NSInteger)scene; +/// Start downloading all files +/// First get file list, then download one by one +- (void)startDownloadAll; +/// Stop downloading all files +- (void)stopDownloadAll; +/// Rate test (cmd=100) +/// \param onOff Start or end +/// +/// \param packSize Test package size +/// +- (void)startRateTest:(BOOL)onOff :(NSInteger)packSize; +/// Pen-side log retrieval (cmd=101) +/// \param begin Start or end +/// +- (void)getDeviceLogs:(BOOL)begin; +/// Whether WebSocket connection has been successfully established (prerequisite for app to send requests) +- (BOOL)isWebSocketConnected SWIFT_WARN_UNUSED_RESULT; +@end + + +@interface PlaudWiFiAgent (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (void)wifiCommonErr:(NSInteger)cmd :(NSInteger)status; +- (void)wifiHandshake:(NSInteger)status; +- (void)wifiPower:(NSInteger)power :(NSInteger)voltage; +- (void)wifiFileListFail:(NSInteger)status; +- (void)wifiFileList:(NSArray * _Nonnull)files; +- (void)wifiSyncFile:(NSInteger)sessionId :(NSInteger)status; +- (void)wifiSyncFileData:(NSInteger)sessionId :(NSInteger)offset :(NSInteger)count :(NSData * _Nonnull)binData; +- (void)wifiDataComplete; +- (void)wifiSyncFileStop:(NSInteger)status; +- (void)wifiFileDelete:(NSInteger)sessionId :(NSInteger)status; +- (void)wifiClientFail; +- (void)wifiClose:(NSInteger)status; +- (void)wifiRateFail:(NSInteger)status; +- (void)wifiRate:(NSInteger)instantRate :(NSInteger)averageRate :(double)lossRate; +- (void)wifiLogsFail:(NSInteger)status; +- (void)wifiLogs:(NSData * _Nullable)logData; +- (void)wifiTips:(NSInteger)tips; +- (void)penRequestOTADataWithStart:(NSInteger)start end:(NSInteger)end payloadSize:(NSInteger)payloadSize uid:(NSInteger)uid sendRatePPS:(NSInteger)sendRatePPS; +- (void)wifiOTAStatus:(NSInteger)status :(NSInteger)uid; +@end + + +SWIFT_PROTOCOL("_TtP19PlaudDeviceBasicSDK22PlaudWiFiAgentProtocol_") +@protocol PlaudWiFiAgentProtocol +@optional +/// Common error +/// \param cmd Error command +/// +/// \param status Error code +/// +- (void)wifiCommonErr:(NSInteger)cmd :(NSInteger)status; +/// Handshake result +/// \param status 0 success, others failure +/// +- (void)wifiHandshake:(NSInteger)status; +/// WiFi connection status change +/// \param ssid WiFi name +/// +/// \param connected Whether connection succeeded +/// +- (void)wifiConnectionStatus:(NSString * _Nonnull)ssid :(BOOL)connected; +/// Battery level and voltage +/// \param power Battery level, percentage +/// +/// \param voltage Battery voltage, mv +/// +- (void)wifiPower:(NSInteger)power :(NSInteger)voltage; +/// Failed to get recording list +/// \param status Error code +/// +- (void)wifiFileListFail:(NSInteger)status; +/// Get recording list +/// \param files Recording list +/// +- (void)wifiFileList:(NSArray * _Nonnull)files; +/// File sync–file status +/// \param sessionId Recording ID +/// +/// \param status Status +/// +- (void)wifiSyncFile:(NSInteger)sessionId :(NSInteger)status; +/// File sync–file data +/// \param sessionId Recording ID +/// +/// \param offset File offset (bytes) +/// +/// \param count File length (bytes) +/// +/// \param binData Data +/// +- (void)wifiSyncFileData:(NSInteger)sessionId :(NSInteger)offset :(NSInteger)count :(NSData * _Nonnull)binData; +/// A file download completed +- (void)wifiDataComplete; +/// File sync stop +/// \param status Status 0 success +/// +- (void)wifiSyncFileStop:(NSInteger)status; +/// File deletion result +/// \param sessionId Recording ID +/// +/// \param status Deletion result 0 success, >0 failure reason +/// +- (void)wifiFileDelete:(NSInteger)sessionId :(NSInteger)status; +/// Client exception disconnect, waiting for reconnection +/// Please set BleAgent.shared.setWiFiState(false) +- (void)wifiClientFail; +/// WiFi close notification +/// \param status Status -1 is didFailWithError; -2 is timeout not connected; -3 NEHotspotConfigurationManager direct connection exception +/// +- (void)wifiClose:(NSInteger)status; +/// Rate test failed +/// \param status Error code +/// +- (void)wifiRateFail:(NSInteger)status; +/// Rate test +/// \param instantRate Instantaneous rate +/// +/// \param averageRate Average rate +/// +/// \param lossRate Packet loss rate +/// +- (void)wifiRate:(NSInteger)instantRate :(NSInteger)averageRate :(double)lossRate; +/// Failed to get pen-side logs +/// \param status Error code +/// +- (void)wifiLogsFail:(NSInteger)status; +/// Pen-side logs +/// \param logData Log data +/// +- (void)wifiLogs:(NSData * _Nullable)logData; +/// Pen sends tips to app +/// \param tips 0 no tip, 1 pen recording key pressed +/// +- (void)wifiTips:(NSInteger)tips; +/// Batch download progress callback +/// \param totalFiles Total number of files +/// +/// \param currentFileIndex Current file index (starting from 1) +/// +/// \param currentFile Currently downloading file +/// +/// \param totalProgress Overall download progress (0.0-1.0) +/// +- (void)wifiDownloadAllProgress:(NSInteger)totalFiles :(NSInteger)currentFileIndex :(BleFile * _Nullable)currentFile :(double)totalProgress; +/// Batch download completed +/// \param completedFiles Number of completed files +/// +/// \param failedFiles Number of failed files +/// +- (void)wifiDownloadAllCompleted:(NSInteger)completedFiles :(NSInteger)failedFiles; +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK19PlaudWifiAddingPage") +@interface PlaudWifiAddingPage : UIViewController +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +- (void)viewDidLoad; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE; +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK20PlaudWifiSettingPage") +@interface PlaudWifiSettingPage : UIViewController +- (void)bleAppKeyStateWithResult:(NSInteger)_; +- (void)onWifiSyncUrlWithUrl:(NSString * _Nonnull)url; +- (void)blePenStateWithState:(NSInteger)_ privacy:(NSInteger)_ keyState:(NSInteger)_ uDisk:(NSInteger)_ findMyToken:(NSInteger)_ hasSndpKey:(NSInteger)_ deviceAccessToken:(NSInteger)_; +- (void)bleConnectStateWithState:(NSInteger)state; +- (void)onWifiSyncEnabled:(NSInteger)value; +- (void)onWifiSyncListReceivedWithList:(NSArray * _Nonnull)list; +- (void)onWifiSyncConfigReceivedWithIndex:(uint32_t)index ssid:(NSString * _Nonnull)ssid password:(NSString * _Nonnull)password; +- (void)onWifiSyncConfigSetWithResult:(NSInteger)result; +- (void)onWifiSyncDeleteResultWithResult:(NSInteger)_; +- (void)onWifiSyncTestResultWithIndex:(uint32_t)index result:(NSInteger)result rawCode:(NSInteger)_; +/// WiFi RSSI measurement request confirmed callback +- (void)onWifiRssiRequestConfirmedWithStatus:(NSInteger)status; +- (void)viewDidLoad; +- (void)observeValueForKeyPath:(NSString * _Nullable)keyPath ofObject:(id _Nullable)object change:(NSDictionary * _Nullable)_ context:(void * _Nullable)_; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +@interface PlaudWifiSettingPage (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (NSInteger)tableView:(UITableView * _Nonnull)_ numberOfRowsInSection:(NSInteger)_ SWIFT_WARN_UNUSED_RESULT; +- (CGFloat)tableView:(UITableView * _Nonnull)_ heightForRowAtIndexPath:(NSIndexPath * _Nonnull)_ SWIFT_WARN_UNUSED_RESULT; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +@end + + +/// // a base class of vc to write bottom view +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK15PresentBottomVC") +@interface PresentBottomVC : UIViewController +- (void)viewDidLoad; +- (void)viewDidDisappear:(BOOL)animated; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC19PlaudDeviceBasicSDK9TestAgent") +@interface TestAgent : NSObject +/// Singleton +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) TestAgent * _Nonnull shared;) ++ (TestAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// Whether device is connected (WiFi or Bluetooth) +- (NSString * _Nonnull)testFunc SWIFT_WARN_UNUSED_RESULT; +@end + + + + + + + + + + + + + + + + + + + + + + + + + + +@class UIPresentationController; + +@interface UIViewController (SWIFT_EXTENSION(PlaudDeviceBasicSDK)) +- (UIPresentationController * _Nullable)presentationControllerForPresentedViewController:(UIViewController * _Nonnull)presented presentingViewController:(UIViewController * _Nullable)presenting sourceViewController:(UIViewController * _Nonnull)source SWIFT_WARN_UNUSED_RESULT; +@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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK.h new file mode 100644 index 0000000..74980a0 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudDeviceBasicSDK.h @@ -0,0 +1,22 @@ +// +// PlaudDeviceBasicSDK.h +// PlaudDeviceBasicSDK +// +// Created by Xiong on 2025/4/28. +// Copyright © 2025 NiceBuild. All rights reserved. +// + +#import + +//! Project version number for PlaudDeviceBasicSDK. +FOUNDATION_EXPORT double PlaudDeviceBasicSDKVersionNumber; + +//! Project version string for PlaudDeviceBasicSDK. +FOUNDATION_EXPORT const unsigned char PlaudDeviceBasicSDKVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + +#import +#import + +//#import diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudLogRedirect.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudLogRedirect.h new file mode 100644 index 0000000..21eacb6 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PlaudLogRedirect.h @@ -0,0 +1,69 @@ +// +// PlaudLogRedirect.h +// PlaudSDK +// +// Created by Plaud Team on 2024/12/19. +// Copyright © 2024 Plaud. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/// Macro definition for redirecting NSLog to file +/// Usage: #import "PlaudLogRedirect.h" in files that need redirection +/// Then use PLAUD_NSLOG(@"message") instead of NSLog(@"message") +/// Note: This macro outputs to both console and saves to file + +#define PLAUD_NSLOG(format, ...) \ + do { \ + NSString *message = [NSString stringWithFormat:format, ##__VA_ARGS__]; \ + NSLog(@"%@", message); \ + [PlaudLogRedirect saveNSLogToFile:message]; \ + } while(0) + +/// Log redirection manager +@interface PlaudLogRedirect : NSObject + +/// Save NSLog message to file +/// @param message Log message ++ (void)saveNSLogToFile:(NSString *)message; + +/// Add a log entry from the host app to the unified SDK log file. +/// Use this method to contribute application-level logs for diagnostics. +/// @param message Log message ++ (void)addLog:(NSString *)message; + +/// Add a log entry with a custom level tag. +/// @param message Log message +/// @param level Log level tag (e.g., "INFO", "ERROR", "WIFI", "BLE") ++ (void)addLog:(NSString *)message level:(NSString *)level; + +/// Get all log file paths +/// @return Array of log file paths ++ (NSArray *)getAllLogFilePaths; + +/// Get current log file path +/// @return Current log file path ++ (NSString *)getCurrentLogFilePath; + +/// Export encrypted .plaud log file for sharing via UIActivityViewController. +/// The .plaud format is a ChaCha20-encrypted ZIP archive containing all log files and SDK info, +/// compatible with the Android SDK's .plaud format. +/// @return File URL of the .plaud file, or nil on failure ++ (nullable NSURL *)exportEncryptedLogFile; + +/// Manually clean up old/excess log files (rotation) ++ (void)cleanupLogFiles; + +/// Delete all log files (e.g., after successful export) ++ (void)deleteAllLogFiles; + +/// Export log files to specified directory +/// @param destinationPath Target directory path +/// @param completion Completion callback ++ (void)exportLogFilesToPath:(NSString *)destinationPath completion:(void(^)(BOOL success, NSError * _Nullable error))completion; + +@end + +NS_ASSUME_NONNULL_END diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PrintManager.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PrintManager.h new file mode 100644 index 0000000..3ea1642 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Headers/PrintManager.h @@ -0,0 +1,12 @@ + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface PrintManager : NSObject + ++ (void)printMenthod; + +@end + +NS_ASSUME_NONNULL_END diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Info.plist b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Info.plist new file mode 100644 index 0000000..063499b Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Info.plist differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo new file mode 100644 index 0000000..a485286 Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..d3d2d24 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,75120 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "PlaudDeviceBasicSDK", + "printedName": "PlaudDeviceBasicSDK", + "children": [ + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudWifiAddingPage", + "printedName": "PlaudWifiAddingPage", + "children": [ + { + "kind": "Var", + "name": "completion", + "printedName": "completion", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiInfo", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "Preconcurrency", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiInfo", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudWifiInfo?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiInfo", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvs", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC10completionyAA0aE4InfoVSgcSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(isEditing:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiAddingPage", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiAddingPage", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC9isEditingACSb_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC9isEditingACSb_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage(im)viewDidLoad", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC11viewDidLoadyyF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setWifiInfo", + "printedName": "setWifiInfo(name:password:wifiIndex:isConnected:)", + "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": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A14WifiAddingPageC03setE4Info4name8password9wifiIndex11isConnectedySS_SSs6UInt32VSgSbtF", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC03setE4Info4name8password9wifiIndex11isConnectedySS_SSs6UInt32VSgSbtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiAddingPage", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiAddingPage", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Bundle?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage(im)initWithNibName:bundle:", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiAddingPage", + "mangledName": "$s19PlaudDeviceBasicSDK0A14WifiAddingPageC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudWifiInfo", + "printedName": "PlaudWifiInfo", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:password:isConnected:index:rssi:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiInfo", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiInfo", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV" + }, + { + "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", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "hasDefaultArg": true, + "usr": "s:s6UInt32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int32?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV4name8password11isConnected5index4rssiACSS_SSSbs6UInt32Vs5Int32VSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A8WifiInfoV4name8password11isConnected5index4rssiACSS_SSSbs6UInt32Vs5Int32VSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A8WifiInfoV", + "mangledName": "$s19PlaudDeviceBasicSDK0A8WifiInfoV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "PlaudWifiSettingPage", + "printedName": "PlaudWifiSettingPage", + "children": [ + { + "kind": "Function", + "name": "resetTempTestWifiIndex", + "printedName": "resetTempTestWifiIndex()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WifiSettingPageC013resetTempTestE5IndexyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC013resetTempTestE5IndexyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Preconcurrency", + "Custom", + "Final", + "AccessControl" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)bleAppKeyStateWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC14bleAppKeyState6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAppKeyStateWithResult:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncUrl", + "printedName": "onWifiSyncUrl(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncUrlWithUrl:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE7SyncUrl3urlySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncUrlWithUrl:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blePenState", + "printedName": "blePenState(state:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC11blePenState5state7privacy03keyJ05uDisk11findMyToken10hasSndpKey012deviceAccessQ0ySi_S6itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)bleConnectStateWithState:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC15bleConnectState5stateySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleConnectStateWithState:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncEnabled", + "printedName": "onWifiSyncEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE11SyncEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncEnabled:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncListReceived", + "printedName": "onWifiSyncListReceived(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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncListReceivedWithList:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE16SyncListReceived4listySays6UInt32VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncListReceivedWithList:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncConfigReceived", + "printedName": "onWifiSyncConfigReceived(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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncConfigReceivedWithIndex:ssid:password:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE18SyncConfigReceived5index4ssid8passwordys6UInt32V_S2StF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncConfigReceivedWithIndex:ssid:password:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncConfigSet", + "printedName": "onWifiSyncConfigSet(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncConfigSetWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE13SyncConfigSet6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncConfigSetWithResult:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncDeleteResult", + "printedName": "onWifiSyncDeleteResult(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncDeleteResultWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE16SyncDeleteResult6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncDeleteResultWithResult:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncTestResult", + "printedName": "onWifiSyncTestResult(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@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiSyncTestResultWithIndex:result:rawCode:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE14SyncTestResult5index6result7rawCodeys6UInt32V_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiSyncTestResultWithIndex:result:rawCode:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiTestTips", + "printedName": "getWifiTestTips(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WifiSettingPageC03getE8TestTips6resultSSSi_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC03getE8TestTips6resultSSSi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiRssiRequestConfirmed", + "printedName": "onWifiRssiRequestConfirmed(status:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)onWifiRssiRequestConfirmedWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC02onE20RssiRequestConfirmed6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onWifiRssiRequestConfirmedWithStatus:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)viewDidLoad", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC11viewDidLoadyyF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "observeValue", + "printedName": "observeValue(forKeyPath:of:change:context:)", + "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": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Foundation.NSKeyValueChangeKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "NSKeyValueChangeKey", + "printedName": "Foundation.NSKeyValueChangeKey", + "usr": "c:@T@NSKeyValueChangeKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutableRawPointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutableRawPointer", + "printedName": "Swift.UnsafeMutableRawPointer", + "usr": "s:Sv" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)observeValueForKeyPath:ofObject:change:context:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC12observeValue10forKeyPath2of6change7contextySSSg_ypSgSDySo05NSKeyi6ChangeK0aypGSgSvSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "observeValueForKeyPath:ofObject:change:context:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateWifiListVisibility", + "printedName": "updateWifiListVisibility()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WifiSettingPageC06updateE14ListVisibilityyyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC06updateE14ListVisibilityyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testWifiConnection", + "printedName": "testWifiConnection(ssid:password:wifiIndex:edit:completion:)", + "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": "Optional", + "printedName": "Swift.UInt32?", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String)", + "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:19PlaudDeviceBasicSDK0A15WifiSettingPageC04testE10Connection4ssid8password9wifiIndex4edit10completionySS_SSs6UInt32VSgSbySb_SStctFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC04testE10Connection4ssid8password9wifiIndex4edit10completionySS_SSs6UInt32VSgSbySb_SStctFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Preconcurrency", + "Custom", + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiSettingPage", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiSettingPage", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Bundle?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)initWithNibName:bundle:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiSettingPage?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWifiSettingPage", + "printedName": "PlaudDeviceBasicSDK.PlaudWifiSettingPage", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)initWithCoder:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "tableView", + "printedName": "tableView(_:numberOfRowsInSection:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "UITableView", + "printedName": "UIKit.UITableView", + "usr": "c:objc(cs)UITableView" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)tableView:numberOfRowsInSection:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC9tableView_21numberOfRowsInSectionSiSo07UITableI0C_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "tableView:numberOfRowsInSection:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "tableView", + "printedName": "tableView(_:heightForRowAt:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "UITableView", + "printedName": "UIKit.UITableView", + "usr": "c:objc(cs)UITableView" + }, + { + "kind": "TypeNominal", + "name": "IndexPath", + "printedName": "Foundation.IndexPath", + "usr": "s:10Foundation9IndexPathV" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)tableView:heightForRowAtIndexPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC9tableView_14heightForRowAt12CoreGraphics7CGFloatVSo07UITableI0C_10Foundation9IndexPathVtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "tableView:heightForRowAtIndexPath:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "tableView", + "printedName": "tableView(_:cellForRowAt:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UITableViewCell", + "printedName": "UIKit.UITableViewCell", + "usr": "c:objc(cs)UITableViewCell" + }, + { + "kind": "TypeNominal", + "name": "UITableView", + "printedName": "UIKit.UITableView", + "usr": "c:objc(cs)UITableView" + }, + { + "kind": "TypeNominal", + "name": "IndexPath", + "printedName": "Foundation.IndexPath", + "usr": "s:10Foundation9IndexPathV" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)tableView:cellForRowAtIndexPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC9tableView_12cellForRowAtSo07UITableI4CellCSo0nI0C_10Foundation9IndexPathVtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "tableView:cellForRowAtIndexPath:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "tableView", + "printedName": "tableView(_:didSelectRowAt:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UITableView", + "printedName": "UIKit.UITableView", + "usr": "c:objc(cs)UITableView" + }, + { + "kind": "TypeNominal", + "name": "IndexPath", + "printedName": "Foundation.IndexPath", + "usr": "s:10Foundation9IndexPathV" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage(im)tableView:didSelectRowAtIndexPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC9tableView_14didSelectRowAtySo07UITableI0C_10Foundation9IndexPathVtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "tableView:didSelectRowAtIndexPath:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWifiSettingPage", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WifiSettingPageC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "PlaudDeviceAgentProtocol", + "printedName": "PlaudDeviceAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP" + }, + { + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Model", + "printedName": "Model", + "children": [ + { + "kind": "Var", + "name": "simulator", + "printedName": "simulator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9simulatoryA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9simulatoryA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod1", + "printedName": "iPod1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod1yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod1yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod2", + "printedName": "iPod2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod3", + "printedName": "iPod3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod4", + "printedName": "iPod4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod5", + "printedName": "iPod5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod6", + "printedName": "iPod6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPod7", + "printedName": "iPod7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPod7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPod7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad2", + "printedName": "iPad2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad3", + "printedName": "iPad3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad4", + "printedName": "iPad4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir", + "printedName": "iPadAir", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPadAiryA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPadAiryA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir2", + "printedName": "iPadAir2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadAir2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadAir2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir3", + "printedName": "iPadAir3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadAir3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadAir3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir4", + "printedName": "iPadAir4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadAir4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadAir4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadAir5", + "printedName": "iPadAir5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadAir5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadAir5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad5", + "printedName": "iPad5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad6", + "printedName": "iPad6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad7", + "printedName": "iPad7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad8", + "printedName": "iPad8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad8yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad8yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPad9", + "printedName": "iPad9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO5iPad9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO5iPad9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini", + "printedName": "iPadMini", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPadMiniyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPadMiniyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini2", + "printedName": "iPadMini2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini3", + "printedName": "iPadMini3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini4", + "printedName": "iPadMini4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini5", + "printedName": "iPadMini5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadMini6", + "printedName": "iPadMini6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadMini6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadMini6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro9_7", + "printedName": "iPadPro9_7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO10iPadPro9_7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO10iPadPro9_7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro10_5", + "printedName": "iPadPro10_5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPadPro10_5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPadPro10_5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro11", + "printedName": "iPadPro11", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPadPro11yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPadPro11yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro2_11", + "printedName": "iPadPro2_11", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPadPro2_11yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPadPro2_11yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro3_11", + "printedName": "iPadPro3_11", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPadPro3_11yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPadPro3_11yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro12_9", + "printedName": "iPadPro12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPadPro12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPadPro12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro2_12_9", + "printedName": "iPadPro2_12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO13iPadPro2_12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO13iPadPro2_12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro3_12_9", + "printedName": "iPadPro3_12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO13iPadPro3_12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO13iPadPro3_12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro4_12_9", + "printedName": "iPadPro4_12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO13iPadPro4_12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO13iPadPro4_12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPadPro5_12_9", + "printedName": "iPadPro5_12_9", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO13iPadPro5_12_9yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO13iPadPro5_12_9yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone4", + "printedName": "iPhone4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone4S", + "printedName": "iPhone4S", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone4SyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone4SyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone5", + "printedName": "iPhone5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone5S", + "printedName": "iPhone5S", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone5SyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone5SyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone5C", + "printedName": "iPhone5C", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone5CyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone5CyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone6", + "printedName": "iPhone6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone6Plus", + "printedName": "iPhone6Plus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone6PlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone6PlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone6S", + "printedName": "iPhone6S", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone6SyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone6SyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone6SPlus", + "printedName": "iPhone6SPlus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12iPhone6SPlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12iPhone6SPlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneSE", + "printedName": "iPhoneSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhoneSEyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhoneSEyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone7", + "printedName": "iPhone7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone7Plus", + "printedName": "iPhone7Plus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone7PlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone7PlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone8", + "printedName": "iPhone8", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhone8yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhone8yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone8Plus", + "printedName": "iPhone8Plus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone8PlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone8PlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneX", + "printedName": "iPhoneX", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO7iPhoneXyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO7iPhoneXyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneXS", + "printedName": "iPhoneXS", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhoneXSyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhoneXSyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneXSMax", + "printedName": "iPhoneXSMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhoneXSMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhoneXSMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneXR", + "printedName": "iPhoneXR", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhoneXRyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhoneXRyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone11", + "printedName": "iPhone11", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone11yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone11yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone11Pro", + "printedName": "iPhone11Pro", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone11ProyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone11ProyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone11ProMax", + "printedName": "iPhone11ProMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO14iPhone11ProMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO14iPhone11ProMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneSE2", + "printedName": "iPhoneSE2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPhoneSE2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPhoneSE2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone12Mini", + "printedName": "iPhone12Mini", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12iPhone12MiniyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12iPhone12MiniyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone12", + "printedName": "iPhone12", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone12yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone12yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone12Pro", + "printedName": "iPhone12Pro", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone12ProyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone12ProyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone12ProMax", + "printedName": "iPhone12ProMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO14iPhone12ProMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO14iPhone12ProMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone13Mini", + "printedName": "iPhone13Mini", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12iPhone13MiniyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12iPhone13MiniyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone13", + "printedName": "iPhone13", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone13yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone13yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone13Pro", + "printedName": "iPhone13Pro", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone13ProyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone13ProyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone13ProMax", + "printedName": "iPhone13ProMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO14iPhone13ProMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO14iPhone13ProMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhoneSE3", + "printedName": "iPhoneSE3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO9iPhoneSE3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO9iPhoneSE3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone14", + "printedName": "iPhone14", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8iPhone14yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8iPhone14yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone14Plus", + "printedName": "iPhone14Plus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12iPhone14PlusyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12iPhone14PlusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone14Pro", + "printedName": "iPhone14Pro", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11iPhone14ProyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11iPhone14ProyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "iPhone14ProMax", + "printedName": "iPhone14ProMax", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO14iPhone14ProMaxyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO14iPhone14ProMaxyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatch1", + "printedName": "AppleWatch1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11AppleWatch1yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11AppleWatch1yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS1", + "printedName": "AppleWatchS1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS1yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS1yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS2", + "printedName": "AppleWatchS2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS3", + "printedName": "AppleWatchS3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS4", + "printedName": "AppleWatchS4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS5", + "printedName": "AppleWatchS5", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS5yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS5yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchSE", + "printedName": "AppleWatchSE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchSEyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchSEyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS6", + "printedName": "AppleWatchS6", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS6yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS6yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleWatchS7", + "printedName": "AppleWatchS7", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12AppleWatchS7yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12AppleWatchS7yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV1", + "printedName": "AppleTV1", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8AppleTV1yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8AppleTV1yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV2", + "printedName": "AppleTV2", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8AppleTV2yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8AppleTV2yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV3", + "printedName": "AppleTV3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8AppleTV3yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8AppleTV3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV4", + "printedName": "AppleTV4", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8AppleTV4yA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8AppleTV4yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV_4K", + "printedName": "AppleTV_4K", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO10AppleTV_4KyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO10AppleTV_4KyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "AppleTV2_4K", + "printedName": "AppleTV2_4K", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO11AppleTV2_4KyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO11AppleTV2_4KyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "unrecognized", + "printedName": "unrecognized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.Model.Type) -> PlaudDeviceBasicSDK.Model", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.Model.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK5ModelO12unrecognizedyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO12unrecognizedyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.Model?", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8rawValueACSgSS_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8rawValueACSgSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK5ModelO8rawValueSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8rawValueSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5ModelO8rawValueSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO8rawValueSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK5ModelO", + "mangledName": "$s19PlaudDeviceBasicSDK5ModelO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CoreBluetooth", + "printedName": "CoreBluetooth", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PresentBottomVCProtocol", + "printedName": "PresentBottomVCProtocol", + "children": [ + { + "kind": "Var", + "name": "controllerHeight", + "printedName": "controllerHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23PresentBottomVCProtocolP16controllerHeight14CoreFoundation7CGFloatVvp", + "mangledName": "$s19PlaudDeviceBasicSDK23PresentBottomVCProtocolP16controllerHeight12CoreGraphics7CGFloatVvp", + "moduleName": "PlaudDeviceBasicSDK", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23PresentBottomVCProtocolP16controllerHeight14CoreFoundation7CGFloatVvg", + "mangledName": "$s19PlaudDeviceBasicSDK23PresentBottomVCProtocolP16controllerHeight12CoreGraphics7CGFloatVvg", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PresentBottomVCProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK23PresentBottomVCProtocolP", + "mangledName": "$s19PlaudDeviceBasicSDK23PresentBottomVCProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "PresentBottomVC", + "printedName": "PresentBottomVC", + "children": [ + { + "kind": "Var", + "name": "controllerHeight", + "printedName": "controllerHeight", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15PresentBottomVCC16controllerHeight14CoreFoundation7CGFloatVvp", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC16controllerHeight12CoreGraphics7CGFloatVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15PresentBottomVCC16controllerHeight14CoreFoundation7CGFloatVvg", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC16controllerHeight12CoreGraphics7CGFloatVvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC(im)viewDidLoad", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC11viewDidLoadyyF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewDidDisappear", + "printedName": "viewDidDisappear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC(im)viewDidDisappear:", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC16viewDidDisappearyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidDisappear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PresentBottomVC", + "printedName": "PlaudDeviceBasicSDK.PresentBottomVC", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Bundle?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC(im)initWithNibName:bundle:", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PresentBottomVC?", + "children": [ + { + "kind": "TypeNominal", + "name": "PresentBottomVC", + "printedName": "PlaudDeviceBasicSDK.PresentBottomVC", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC(im)initWithCoder:", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Required" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC", + "mangledName": "$s19PlaudDeviceBasicSDK15PresentBottomVCC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "PresentBottomVCProtocol", + "printedName": "PresentBottomVCProtocol", + "usr": "s:19PlaudDeviceBasicSDK23PresentBottomVCProtocolP", + "mangledName": "$s19PlaudDeviceBasicSDK23PresentBottomVCProtocolP" + }, + { + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "PresentBottomHideKey", + "printedName": "PresentBottomHideKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK20PresentBottomHideKeySSvp", + "mangledName": "$s19PlaudDeviceBasicSDK20PresentBottomHideKeySSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK20PresentBottomHideKeySSvg", + "mangledName": "$s19PlaudDeviceBasicSDK20PresentBottomHideKeySSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "MediaPlayer", + "printedName": "MediaPlayer", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "WaveProtocol", + "printedName": "WaveProtocol", + "children": [ + { + "kind": "Function", + "name": "onTimeChange", + "printedName": "onTimeChange(millisec:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK12WaveProtocolP12onTimeChange8millisec3endySi_SbtF", + "mangledName": "$s19PlaudDeviceBasicSDK12WaveProtocolP12onTimeChange8millisec3endySi_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.WaveProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK12WaveProtocolP", + "mangledName": "$s19PlaudDeviceBasicSDK12WaveProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "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": "JXWaveformProtocol", + "printedName": "JXWaveformProtocol", + "children": [ + { + "kind": "Function", + "name": "onPlayOrPauseClick", + "printedName": "onPlayOrPauseClick()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP18onPlayOrPauseClickyyF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP18onPlayOrPauseClickyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onTimeChange", + "printedName": "onTimeChange(millisec:end:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP12onTimeChange8millisec3endySi_SbtF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP12onTimeChange8millisec3endySi_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onInfoClick", + "printedName": "onInfoClick()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP11onInfoClickyyF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP11onInfoClickyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onShareClick", + "printedName": "onShareClick()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP12onShareClickyyF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP12onShareClickyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onStopRecordClick", + "printedName": "onStopRecordClick()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP17onStopRecordClickyyF", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP17onStopRecordClickyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.JXWaveformProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK18JXWaveformProtocolP", + "mangledName": "$s19PlaudDeviceBasicSDK18JXWaveformProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "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": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "MediaPlayer", + "printedName": "MediaPlayer", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "AVKit", + "printedName": "AVKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreTelephony.CTCellularData", + "printedName": "CoreTelephony.CTCellularData", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "MediaPlayer", + "printedName": "MediaPlayer", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "CoreLocation", + "printedName": "CoreLocation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "SoundCategory", + "printedName": "SoundCategory", + "children": [ + { + "kind": "Var", + "name": "ambient", + "printedName": "ambient", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO7ambientyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO7ambientyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "soloAmbient", + "printedName": "soloAmbient", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO11soloAmbientyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO11soloAmbientyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "playback", + "printedName": "playback", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO8playbackyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO8playbackyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "record", + "printedName": "record", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO6recordyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO6recordyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "playAndRecord", + "printedName": "playAndRecord", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.SoundCategory.Type) -> PlaudDeviceBasicSDK.SoundCategory", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.SoundCategory.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO13playAndRecordyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO13playAndRecordyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + }, + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO2eeoiySbAC_ACtFZ", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO2eeoiySbAC_ACtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK13SoundCategoryO9hashValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO9hashValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO9hashValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO9hashValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK13SoundCategoryO4hash4intoys6HasherVz_tF", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO4hash4intoys6HasherVz_tF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO", + "mangledName": "$s19PlaudDeviceBasicSDK13SoundCategoryO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Sound", + "printedName": "Sound", + "children": [ + { + "kind": "Var", + "name": "playersPerSound", + "printedName": "playersPerSound", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC010playersPerE0SivpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC010playersPerE0SivpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "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:19PlaudDeviceBasicSDK5SoundC010playersPerE0SivgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC010playersPerE0SivgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC010playersPerE0SivsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC010playersPerE0SivsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC010playersPerE0SivMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC010playersPerE0SivMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "session", + "printedName": "session", + "children": [ + { + "kind": "TypeNominal", + "name": "Session", + "printedName": "any PlaudDeviceBasicSDK.Session", + "usr": "s:19PlaudDeviceBasicSDK7SessionP" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Session", + "printedName": "any PlaudDeviceBasicSDK.Session", + "usr": "s:19PlaudDeviceBasicSDK7SessionP" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Session", + "printedName": "any PlaudDeviceBasicSDK.Session", + "usr": "s:19PlaudDeviceBasicSDK7SessionP" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7sessionAA7Session_pvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "category", + "printedName": "category", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SoundCategory", + "printedName": "PlaudDeviceBasicSDK.SoundCategory", + "usr": "s:19PlaudDeviceBasicSDK13SoundCategoryO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8categoryAA0E8CategoryOvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7enabledSbvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7enabledSbvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "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:19PlaudDeviceBasicSDK5SoundC7enabledSbvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7enabledSbvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:19PlaudDeviceBasicSDK5SoundC7enabledSbvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7enabledSbvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7enabledSbvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7enabledSbvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "playerClass", + "printedName": "playerClass", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "any PlaudDeviceBasicSDK.Player.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Player", + "printedName": "PlaudDeviceBasicSDK.Player", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "any PlaudDeviceBasicSDK.Player.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Player", + "printedName": "PlaudDeviceBasicSDK.Player", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "any PlaudDeviceBasicSDK.Player.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Player", + "printedName": "PlaudDeviceBasicSDK.Player", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC11playerClassAA6Player_pXpvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "soundsBundle", + "printedName": "soundsBundle", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvsZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvsZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvMZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC12soundsBundleSo8NSBundleCvMZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.Sound?", + "children": [ + { + "kind": "TypeNominal", + "name": "Sound", + "printedName": "PlaudDeviceBasicSDK.Sound", + "usr": "s:19PlaudDeviceBasicSDK5SoundC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC3urlACSg10Foundation3URLV_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC3urlACSg10Foundation3URLV_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "play", + "printedName": "play(numberOfLoops:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4play13numberOfLoops10completionSbSi_ySbcSgtF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4play13numberOfLoops10completionSbSi_ySbcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4stopyyF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4stopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC5pauseyyF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC5pauseyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6resumeSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6resumeSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "playing", + "printedName": "playing", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7playingSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7playingSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7playingSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7playingSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paused", + "printedName": "paused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6pausedSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6pausedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6pausedSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6pausedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "prepare", + "printedName": "prepare()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7prepareSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7prepareSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "play", + "printedName": "play(file:fileExtension:numberOfLoops:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4play4file0G9Extension13numberOfLoopsSbSS_SSSgSitFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4play4file0G9Extension13numberOfLoopsSbSS_SSSgSitFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "play", + "printedName": "play(url:numberOfLoops:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4play3url13numberOfLoopsSb10Foundation3URLV_SitFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4play3url13numberOfLoopsSb10Foundation3URLV_SitFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4stop3fory10Foundation3URLV_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4stop3fory10Foundation3URLV_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8durationSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8durationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC8durationSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC8durationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "volume", + "printedName": "volume", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6volumeSfvp", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6volumeSfvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6volumeSfvg", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6volumeSfvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6volumeSfvs", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6volumeSfvs", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK5SoundC6volumeSfvM", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC6volumeSfvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop(file:fileExtension:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC4stop4file0G9ExtensionySS_SSSgtFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC4stop4file0G9ExtensionySS_SSSgtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopAll", + "printedName": "stopAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK5SoundC7stopAllyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC7stopAllyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK5SoundC", + "mangledName": "$s19PlaudDeviceBasicSDK5SoundC", + "moduleName": "PlaudDeviceBasicSDK", + "isOpen": true, + "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": "TypeDecl", + "name": "Player", + "printedName": "Player", + "children": [ + { + "kind": "Function", + "name": "play", + "printedName": "play(numberOfLoops:completion:)", + "children": [ + { + "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.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP4play13numberOfLoops10completionSbSi_ySbcSgtF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP4play13numberOfLoops10completionSbSi_ySbcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP4stopyyF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP4stopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP5pauseyyF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP5pauseyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6resumeyyF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6resumeyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "prepareToPlay", + "printedName": "prepareToPlay()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP13prepareToPlaySbyF", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP13prepareToPlaySbyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(contentsOf:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP10contentsOfx10Foundation3URLV_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP10contentsOfx10Foundation3URLV_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP8durationSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP8durationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP8durationSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP8durationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "volume", + "printedName": "volume", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6volumeSfvp", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6volumeSfvp", + "moduleName": "PlaudDeviceBasicSDK", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6volumeSfvg", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6volumeSfvg", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6volumeSfvs", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6volumeSfvs", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP6volumeSfvM", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP6volumeSfvM", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isPlaying", + "printedName": "isPlaying", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP9isPlayingSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP9isPlayingSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP9isPlayingSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP9isPlayingSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Player>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "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": "Session", + "printedName": "Session", + "children": [ + { + "kind": "Function", + "name": "setCategory", + "printedName": "setCategory(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Category", + "printedName": "AVFAudio.AVAudioSession.Category", + "usr": "c:@T@AVAudioSessionCategory" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK7SessionP11setCategoryyySo07AVAudioeG0aKF", + "mangledName": "$s19PlaudDeviceBasicSDK7SessionP11setCategoryyySo07AVAudioeG0aKF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.Session>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:19PlaudDeviceBasicSDK7SessionP", + "mangledName": "$s19PlaudDeviceBasicSDK7SessionP", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "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": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudAudioPlayerViewController", + "printedName": "PlaudAudioPlayerViewController", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sessionId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudAudioPlayerViewController", + "printedName": "PlaudDeviceBasicSDK.PlaudAudioPlayerViewController", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)initWithSessionId:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC9sessionIdACSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "initWithSessionId:", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "viewDidLoad", + "printedName": "viewDidLoad()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)viewDidLoad", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC11viewDidLoadyyF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewDidLoad", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewWillDisappear", + "printedName": "viewWillDisappear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)viewWillDisappear:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC17viewWillDisappearyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "viewWillDisappear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerDidFinishPlaying", + "printedName": "audioPlayerDidFinishPlaying(_:successfully:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)audioPlayerDidFinishPlaying:successfully:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC05audioF16DidFinishPlaying_12successfullyySo07AVAudioF0C_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerDidFinishPlaying:successfully:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerDecodeErrorDidOccur", + "printedName": "audioPlayerDecodeErrorDidOccur(_:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "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:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)audioPlayerDecodeErrorDidOccur:error:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC05audioF19DecodeErrorDidOccur_5errorySo07AVAudioF0C_s0K0_pSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerDecodeErrorDidOccur:error:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerBeginInterruption", + "printedName": "audioPlayerBeginInterruption(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)audioPlayerBeginInterruption:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC05audioF17BeginInterruptionyySo07AVAudioF0CF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerBeginInterruption:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerEndInterruption", + "printedName": "audioPlayerEndInterruption(_:withOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)audioPlayerEndInterruption:withOptions:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC05audioF15EndInterruption_11withOptionsySo07AVAudioF0C_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerEndInterruption:withOptions:", + "declAttributes": [ + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudAudioPlayerViewController", + "printedName": "PlaudDeviceBasicSDK.PlaudAudioPlayerViewController", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Bundle?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController(im)initWithNibName:bundle:", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudAudioPlayerViewController", + "mangledName": "$s19PlaudDeviceBasicSDK0A25AudioPlayerViewControllerC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "AVFoundation", + "printedName": "AVFoundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudPCMPlayer", + "printedName": "PlaudPCMPlayer", + "children": [ + { + "kind": "Var", + "name": "isPlaying", + "printedName": "isPlaying", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)isPlaying", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC9isPlayingSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)isPlaying", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC9isPlayingSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isPaused", + "printedName": "isPaused", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)isPaused", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8isPausedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)isPaused", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8isPausedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)duration", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8durationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)duration", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8durationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentTime", + "printedName": "currentTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)currentTime", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC11currentTimeSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)currentTime", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC11currentTimeSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "onPlaybackFinished", + "printedName": "onPlaybackFinished", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)onPlaybackFinished", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)onPlaybackFinished", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)setOnPlaybackFinished:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC18onPlaybackFinishedyycSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "onError", + "printedName": "onError", + "children": [ + { + "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" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(py)onError", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "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" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)onError", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)setOnError:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC7onErrorySScSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPCMPlayer", + "printedName": "PlaudDeviceBasicSDK.PlaudPCMPlayer", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "loadFile", + "printedName": "loadFile(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@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)loadFileWithPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC8loadFile4pathSbSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "loadFileWithPath:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "play", + "printedName": "play()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)play", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC4playyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pause", + "printedName": "pause()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)pause", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC5pauseyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stop", + "printedName": "stop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer(im)stop", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC4stopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudPCMPlayer", + "mangledName": "$s19PlaudDeviceBasicSDK0A9PCMPlayerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "AnyCodable", + "printedName": "AnyCodable", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV5valueypvp", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV5valueypvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV5valueypvg", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV5valueypvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableVyACypcfc", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableVyACypcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV", + "mangledName": "$s19PlaudDeviceBasicSDK10AnyCodableV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudDomainManager", + "printedName": "PlaudDomainManager", + "children": [ + { + "kind": "TypeDecl", + "name": "Region", + "printedName": "Region", + "children": [ + { + "kind": "Var", + "name": "cn", + "printedName": "cn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type) -> PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2cnyA2EmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2cnyA2EmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "us", + "printedName": "us", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type) -> PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2usyA2EmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2usyA2EmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "jp", + "printedName": "jp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type) -> PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2jpyA2EmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO2jpyA2EmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region?", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueAESgSS_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueAESgSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8rawValueSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.PlaudDomainManager.Region]", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8allCasesSayAEGvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8allCasesSayAEGvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Nonisolated" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.PlaudDomainManager.Region]", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8allCasesSayAEGvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO8allCasesSayAEGvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.PlaudDomainManager.Region]", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDomainManager", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6sharedACvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDomainManager", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6sharedACvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setCustomDomain", + "printedName": "setCustomDomain(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC09setCustomE0yySSF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC09setCustomE0yySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAutoLanguageAssociation", + "printedName": "setAutoLanguageAssociation(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC26setAutoLanguageAssociationyySbF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC26setAutoLanguageAssociationyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAutoLanguageAssociationEnabled", + "printedName": "isAutoLanguageAssociationEnabled()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC32isAutoLanguageAssociationEnabledSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC32isAutoLanguageAssociationEnabledSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setRegion", + "printedName": "setRegion(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC9setRegionyyAC0H0OF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC9setRegionyyAC0H0OF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setRegionForLanguage", + "printedName": "setRegionForLanguage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC20setRegionForLanguageyySSF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC20setRegionForLanguageyySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentRegion", + "printedName": "getCurrentRegion()", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC16getCurrentRegionAC0I0OyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC16getCurrentRegionAC0I0OyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentDomain", + "printedName": "getCurrentDomain()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC010getCurrentE0SSyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC010getCurrentE0SSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentBaseURL", + "printedName": "getCurrentBaseURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC17getCurrentBaseURLSSyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC17getCurrentBaseURLSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDomain", + "printedName": "getDomain(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC03getE03forSSAC6RegionO_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC03getE03forSSAC6RegionO_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBaseURL", + "printedName": "getBaseURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC10getBaseURL3forSSAC6RegionO_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC10getBaseURL3forSSAC6RegionO_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAPIURL", + "printedName": "buildAPIURL(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4pathS2S_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4pathS2S_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAPIURL", + "printedName": "buildAPIURL(path:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4path3forS2S_AC6RegionOtF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4path3forS2S_AC6RegionOtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAPIURL", + "printedName": "buildAPIURL(path:for:)", + "children": [ + { + "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": "s:19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4path3forS2S_SStF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC11buildAPIURL4path3forS2S_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRegionForCurrentLanguage", + "printedName": "getRegionForCurrentLanguage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "PlaudDeviceBasicSDK.PlaudDomainManager.Region", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC6RegionO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC27getRegionForCurrentLanguageAC0H0OyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC27getRegionForCurrentLanguageAC0H0OyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentLanguageCode", + "printedName": "getCurrentLanguageCode()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC22getCurrentLanguageCodeSSyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC22getCurrentLanguageCodeSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A13DomainManagerC", + "mangledName": "$s19PlaudDeviceBasicSDK0A13DomainManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudFileUploader", + "printedName": "PlaudFileUploader", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFileUploader", + "printedName": "PlaudDeviceBasicSDK.PlaudFileUploader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFileUploader", + "printedName": "PlaudDeviceBasicSDK.PlaudFileUploader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "device", + "printedName": "device", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(py)device", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(im)device", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(im)setDevice:", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC6device0a3BleD00hB0CSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "checkRecordingExist", + "printedName": "checkRecordingExist(sessionId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC19checkRecordingExist9sessionIdSbSi_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC19checkRecordingExist9sessionIdSbSi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDownloadedRecordingPath", + "printedName": "getDownloadedRecordingPath(sessionId:desiredPath:)", + "children": [ + { + "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" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC26getDownloadedRecordingPath9sessionId07desiredJ0SSSi_SStF", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC26getDownloadedRecordingPath9sessionId07desiredJ0SSSi_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadRecording", + "printedName": "uploadRecording(sn:sessionId:duration:onProgress:onSuccess:onFailure:)", + "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": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(im)uploadRecordingWithSn:sessionId:duration:onProgress:onSuccess:onFailure:", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC15uploadRecording2sn9sessionId8duration10onProgress0M7Success0M7FailureySS_SiSdySdcySDySSypGcys5Error_pctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadRecordingWithSn:sessionId:duration:onProgress:onSuccess:onFailure:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadLogFile", + "printedName": "uploadLogFile(filePath:sn:onProgress:onSuccess:onFailure:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(im)uploadLogFileWithFilePath:sn:onProgress:onSuccess:onFailure:", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC09uploadLogE08filePath2sn10onProgress0L7Success0L7FailureySS_SSySdcySDySSypGcys5Error_pctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadLogFileWithFilePath:sn:onProgress:onSuccess:onFailure:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "calculateSnType", + "printedName": "calculateSnType(sn:)", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader(cm)calculateSnTypeWithSn:", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC15calculateSnType2snS2S_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "calculateSnTypeWithSn:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bindDevice", + "printedName": "bindDevice(ownerId:sn:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<[Swift.String : Any], any Swift.Error>) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[Swift.String : Any], any Swift.Error>", + "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" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC04bindB07ownerId2sn10completionySS_SSys6ResultOySDySSypGs5Error_pGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC04bindB07ownerId2sn10completionySS_SSys6ResultOySDySSypGs5Error_pGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unbindDevice", + "printedName": "unbindDevice(ownerId:sn:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<[Swift.String : Any], any Swift.Error>) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<[Swift.String : Any], any Swift.Error>", + "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" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A12FileUploaderC06unbindB07ownerId2sn10completionySS_SSys6ResultOySDySSypGs5Error_pGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC06unbindB07ownerId2sn10completionySS_SSys6ResultOySDySSypGs5Error_pGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFileUploader", + "mangledName": "$s19PlaudDeviceBasicSDK0A12FileUploaderC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudLocalizationManager", + "printedName": "PlaudLocalizationManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLocalizationManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLocalizationManager", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC6sharedACvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLocalizationManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLocalizationManager", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC6sharedACvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setCustomBundlePath", + "printedName": "setCustomBundlePath(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC19setCustomBundlePathyySSF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC19setCustomBundlePathyySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setLanguage", + "printedName": "setLanguage(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC11setLanguageyySSF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC11setLanguageyySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentLanguage", + "printedName": "getCurrentLanguage()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC18getCurrentLanguageSSyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC18getCurrentLanguageSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkSDKBundle", + "printedName": "checkSDKBundle()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC14checkSDKBundleSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC14checkSDKBundleSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "localizedString", + "printedName": "localizedString(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC15localizedString3forS2S_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC15localizedString3forS2S_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A19LocalizationManagerC", + "mangledName": "$s19PlaudDeviceBasicSDK0A19LocalizationManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudLogUploadManager", + "printedName": "PlaudLogUploadManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadManager", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadManager", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setAutoUploadEnabled", + "printedName": "setAutoUploadEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)setAutoUploadEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC07setAutoF7EnabledyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startAutoUpload", + "printedName": "startAutoUpload()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)startAutoUpload", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC09startAutoF0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopAutoUpload", + "printedName": "stopAutoUpload()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)stopAutoUpload", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC08stopAutoF0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadLogFiles", + "printedName": "uploadLogFiles(onProgress:onSuccess:onFailure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)uploadLogFilesOnProgress:onSuccess:onFailure:", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC06uploadE5Files10onProgress0J7Success0J7FailureyySdc_ySDySSypGcys5Error_pctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadLogFilesOnProgress:onSuccess:onFailure:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanupLogFiles", + "printedName": "cleanupLogFiles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)cleanupLogFiles", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC07cleanupE5FilesyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUploadStatistics", + "printedName": "getUploadStatistics()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)getUploadStatistics", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC03getF10StatisticsSDySSypGyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadLogFilesWithDeviceSN", + "printedName": "uploadLogFilesWithDeviceSN(sn:onProgress:onSuccess:onFailure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Double) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Swift.String : Any]) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)uploadLogFilesWithDeviceSNWithSn:onProgress:onSuccess:onFailure:", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC06uploade9FilesWithB2SN2sn10onProgress0M7Success0M7FailureySS_ySdcySDySSypGcys5Error_pctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadLogFilesWithDeviceSNWithSn:onProgress:onSuccess:onFailure:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "uploadLogsAfterRecording", + "printedName": "uploadLogsAfterRecording(sn:sessionId:onCompletion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager(im)uploadLogsAfterRecordingWithSn:sessionId:onCompletion:", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC24uploadLogsAfterRecording2sn9sessionId12onCompletionySS_SiySb_s5Error_pSgtctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "uploadLogsAfterRecordingWithSn:sessionId:onCompletion:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogUploadManager", + "mangledName": "$s19PlaudDeviceBasicSDK0A16LogUploadManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudLogUploadError", + "printedName": "PlaudLogUploadError", + "children": [ + { + "kind": "Var", + "name": "alreadyUploading", + "printedName": "alreadyUploading", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudLogUploadError.Type) -> PlaudDeviceBasicSDK.PlaudLogUploadError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError@PlaudLogUploadErrorAlreadyUploading", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO16alreadyUploadingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "directoryNotFound", + "printedName": "directoryNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudLogUploadError.Type) -> PlaudDeviceBasicSDK.PlaudLogUploadError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError@PlaudLogUploadErrorDirectoryNotFound", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO17directoryNotFoundyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "partialUpload", + "printedName": "partialUpload", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudLogUploadError.Type) -> PlaudDeviceBasicSDK.PlaudLogUploadError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError@PlaudLogUploadErrorPartialUpload", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO07partialF0yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_nsErrorDomain", + "printedName": "_nsErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO03_nsG6DomainSSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO03_nsG6DomainSSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14LogUploadErrorO03_nsG6DomainSSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO03_nsG6DomainSSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudLogUploadError", + "mangledName": "$s19PlaudDeviceBasicSDK0A14LogUploadErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "_BridgedNSError", + "printedName": "_BridgedNSError", + "usr": "s:10Foundation15_BridgedNSErrorP", + "mangledName": "$s10Foundation15_BridgedNSErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeableError", + "printedName": "_ObjectiveCBridgeableError", + "usr": "s:10Foundation26_ObjectiveCBridgeableErrorP", + "mangledName": "$s10Foundation26_ObjectiveCBridgeableErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudLogUploadPartialError", + "printedName": "PlaudLogUploadPartialError", + "children": [ + { + "kind": "Var", + "name": "result", + "printedName": "result", + "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:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultSDySSypGvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultSDySSypGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultSDySSypGvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultSDySSypGvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogUploadPartialError", + "printedName": "PlaudDeviceBasicSDK.PlaudLogUploadPartialError", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV" + }, + { + "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": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultACSDySSypG_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV6resultACSDySSypG_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV", + "mangledName": "$s19PlaudDeviceBasicSDK0A21LogUploadPartialErrorV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "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": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerSnSignRequest", + "printedName": "PlaudPartnerSnSignRequest", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4typeSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4typeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4typeSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4typeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sn", + "printedName": "sn", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV2snSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV2snSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV2snSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV2snSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:sn:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignRequest", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignRequest", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4type2snACSS_SStcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4type2snACSS_SStcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignRequest", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignRequest", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV", + "mangledName": "$s19PlaudDeviceBasicSDK0A20PartnerSnSignRequestV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerSnSignResponse", + "printedName": "PlaudPartnerSnSignResponse", + "children": [ + { + "kind": "Var", + "name": "signature", + "printedName": "signature", + "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:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(signature:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV" + }, + { + "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:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureACSSSg_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV9signatureACSSSg_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerGenKeyResponse", + "printedName": "PlaudPartnerGenKeyResponse", + "children": [ + { + "kind": "Var", + "name": "publicKey", + "printedName": "publicKey", + "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:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG0SSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG0SSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG0SSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG0SSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "privateKey", + "printedName": "privateKey", + "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:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV07privateG0SSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV07privateG0SSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV07privateG0SSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV07privateG0SSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(publicKey:privateKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerGenKeyResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerGenKeyResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG007privateG0ACSSSg_AFtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV06publicG007privateG0ACSSSg_AFtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerGenKeyResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerGenKeyResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerApiErrorResponse", + "printedName": "PlaudPartnerApiErrorResponse", + "children": [ + { + "kind": "Var", + "name": "detail", + "printedName": "detail", + "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:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(detail:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiErrorResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiErrorResponse", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV" + }, + { + "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:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailACSSSg_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6detailACSSSg_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiErrorResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiErrorResponse", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK0A23PartnerApiErrorResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerApiError", + "printedName": "PlaudPartnerApiError", + "children": [ + { + "kind": "Var", + "name": "invalidParameter", + "printedName": "invalidParameter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO16invalidParameteryACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO16invalidParameteryACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "noUserAccessToken", + "printedName": "noUserAccessToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO17noUserAccessTokenyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO17noUserAccessTokenyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidURL", + "printedName": "invalidURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO10invalidURLyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO10invalidURLyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidResponse", + "printedName": "invalidResponse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO15invalidResponseyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO15invalidResponseyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "unauthorized", + "printedName": "unauthorized", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (Swift.String?) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(detail: Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO12unauthorizedyACSSSg_tcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO12unauthorizedyACSSSg_tcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "serverError", + "printedName": "serverError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (Swift.Int, Swift.String?) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, Swift.String?) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(code: Swift.Int, body: Swift.String?)", + "children": [ + { + "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" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO06serverG0yACSi_SSSgtcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO06serverG0yACSi_SSSgtcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "requestEncodeFailed", + "printedName": "requestEncodeFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO19requestEncodeFailedyACs0G0_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO19requestEncodeFailedyACs0G0_pcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "responseDecodeFailed", + "printedName": "responseDecodeFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO20responseDecodeFailedyACs0G0_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO20responseDecodeFailedyACs0G0_pcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "networkError", + "printedName": "networkError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudPartnerApiError.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.PlaudPartnerApiError", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiError", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiError", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO07networkG0yACs0G0_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO07networkG0yACs0G0_pcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "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:19PlaudDeviceBasicSDK0A15PartnerApiErrorO16errorDescriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO16errorDescriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK0A15PartnerApiErrorO16errorDescriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO16errorDescriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK0A15PartnerApiErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK0A15PartnerApiErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudPartnerApiManager", + "printedName": "PlaudPartnerApiManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiManager", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiManager", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC6sharedACvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiManager", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiManager", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC6sharedACvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setUserAccessToken", + "printedName": "setUserAccessToken(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC18setUserAccessTokenyySSSgF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC18setUserAccessTokenyySSSgF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserAccessToken", + "printedName": "getUserAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC18getUserAccessTokenSSSgyF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC18getUserAccessTokenSSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "signDeviceSn", + "printedName": "signDeviceSn(deviceType:sn:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerSnSignResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerSnSignResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerSnSignResponseV" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC04signB2Sn10deviceType2sn10completionySS_SSys6ResultOyAA0aeI12SignResponseVs5Error_pGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC04signB2Sn10deviceType2sn10completionySS_SSys6ResultOyAA0aeI12SignResponseVs5Error_pGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateRsaKeyPair", + "printedName": "generateRsaKeyPair(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerGenKeyResponse", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerGenKeyResponse", + "usr": "s:19PlaudDeviceBasicSDK0A21PartnerGenKeyResponseV" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC18generateRsaKeyPair10completionyys6ResultOyAA0ae3GenJ8ResponseVs5Error_pGc_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC18generateRsaKeyPair10completionyys6ResultOyAA0ae3GenJ8ResponseVs5Error_pGc_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC", + "mangledName": "$s19PlaudDeviceBasicSDK0A17PartnerApiManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudSDKLogger", + "printedName": "PlaudSDKLogger", + "children": [ + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudSDKLogger(cm)logEvent:parameters:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9SDKLoggerC8logEvent_10parametersySS_So12NSDictionaryCSgtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudSDKLogger", + "printedName": "PlaudDeviceBasicSDK.PlaudSDKLogger", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudSDKLogger" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudSDKLogger(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A9SDKLoggerCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudSDKLogger", + "mangledName": "$s19PlaudDeviceBasicSDK0A9SDKLoggerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "WorkflowStatus", + "printedName": "WorkflowStatus", + "children": [ + { + "kind": "Var", + "name": "pending", + "printedName": "pending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7pendingyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7pendingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "running", + "printedName": "running", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7runningyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7runningyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO8progressyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO8progressyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7successyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7successyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7failureyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7failureyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO9cancelledyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO9cancelledyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatus.Type) -> PlaudDeviceBasicSDK.WorkflowStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO7timeoutyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO7timeoutyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK14WorkflowStatusO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isFinished", + "printedName": "isFinished", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO10isFinishedSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO10isFinishedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO10isFinishedSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO10isFinishedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSuccess", + "printedName": "isSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO9isSuccessSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO9isSuccessSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO9isSuccessSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO9isSuccessSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueACSgSS_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueACSgSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO8rawValueSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowStatusO", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowTaskType", + "printedName": "WorkflowTaskType", + "children": [ + { + "kind": "Var", + "name": "audioTranscribe", + "printedName": "audioTranscribe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO15audioTranscribeyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO15audioTranscribeyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "aiSummarize", + "printedName": "aiSummarize", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO11aiSummarizeyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO11aiSummarizeyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "aiEtl", + "printedName": "aiEtl", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO5aiEtlyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO5aiEtlyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "audioMerge", + "printedName": "audioMerge", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO10audioMergeyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO10audioMergeyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO6customyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO6customyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowTaskType.Type) -> PlaudDeviceBasicSDK.WorkflowTaskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO7unknownyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO7unknownyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK16WorkflowTaskTypeO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueACSgSS_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueACSgSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8rawValueSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskType]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8allCasesSayACGvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8allCasesSayACGvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Nonisolated" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskType]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO8allCasesSayACGvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO8allCasesSayACGvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowTaskTypeO", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskType]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowTaskParams", + "printedName": "WorkflowTaskParams", + "children": [ + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersACSDySSypGSg_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV10parametersACSDySSypGSg_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fileId:language:diarization:extras:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV6fileId8language11diarization6extrasACSS_SSSbSDySSypGtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV6fileId8language11diarization6extrasACSS_SSSbSDySSypGtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(etlType:extras:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV7etlType6extrasACSS_SDySSypGtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV7etlType6extrasACSS_SDySSypGtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fileIdList:groupId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV10fileIdList05groupI0ACSaySSG_SStcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV10fileIdList05groupI0ACSaySSG_SStcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(summaryType:extras:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV11summaryType6extrasACSS_SDySSypGtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV11summaryType6extrasACSS_SDySSypGtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskParamsV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowTask", + "printedName": "WorkflowTask", + "children": [ + { + "kind": "Var", + "name": "taskType", + "printedName": "taskType", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV8taskTypeAA0efH0Ovp", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV8taskTypeAA0efH0Ovp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV8taskTypeAA0efH0Ovg", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV8taskTypeAA0efH0Ovg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskParams", + "printedName": "taskParams", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV10taskParamsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV10taskParamsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV10taskParamsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV10taskParamsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(taskType:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + }, + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV8taskType10parametersAcA0efH0O_SDySSypGSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV8taskType10parametersAcA0efH0O_SDySSypGSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(taskType:taskParams:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + }, + { + "kind": "TypeNominal", + "name": "WorkflowTaskType", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskType", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowTaskTypeO" + }, + { + "kind": "TypeNominal", + "name": "WorkflowTaskParams", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskParams", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskParamsV" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV8taskType0G6ParamsAcA0efH0O_AA0efI0Vtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV8taskType0G6ParamsAcA0efH0O_AA0efI0Vtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV", + "mangledName": "$s19PlaudDeviceBasicSDK12WorkflowTaskV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowMetadata", + "printedName": "WorkflowMetadata", + "children": [ + { + "kind": "Var", + "name": "organizationId", + "printedName": "organizationId", + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceSn", + "printedName": "deviceSn", + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV8deviceSnSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV8deviceSnSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16WorkflowMetadataV8deviceSnSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV8deviceSnSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customData", + "printedName": "customData", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV10customDataSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV10customDataSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV10customDataSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV10customDataSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(organizationId:ownerId:deviceSn:customData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationId05ownerH08deviceSn10customDataACSSSg_A2HSDySSypGSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV14organizationId05ownerH08deviceSn10customDataACSSSg_A2HSDySSypGSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV", + "mangledName": "$s19PlaudDeviceBasicSDK16WorkflowMetadataV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowSubmitRequest", + "printedName": "WorkflowSubmitRequest", + "children": [ + { + "kind": "Var", + "name": "workflows", + "printedName": "workflows", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflowsSayAA0E4TaskVGvp", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflowsSayAA0E4TaskVGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflowsSayAA0E4TaskVGvg", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflowsSayAA0E4TaskVGvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV8metadataAA0E8MetadataVvp", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV8metadataAA0E8MetadataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV8metadataAA0E8MetadataVvg", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV8metadataAA0E8MetadataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV7versionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV7versionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV7versionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV7versionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(workflows:metadata:version:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitRequest", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitRequest", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "WorkflowMetadata", + "printedName": "PlaudDeviceBasicSDK.WorkflowMetadata", + "hasDefaultArg": true, + "usr": "s:19PlaudDeviceBasicSDK16WorkflowMetadataV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflows8metadata7versionACSayAA0E4TaskVG_AA0E8MetadataVSStcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV9workflows8metadata7versionACSayAA0E4TaskVG_AA0E8MetadataVSStcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitRequest", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitRequest", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV", + "mangledName": "$s19PlaudDeviceBasicSDK21WorkflowSubmitRequestV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowSubmitResponse", + "printedName": "WorkflowSubmitResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV2idSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV2idSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV2idSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV2idSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6statusAA0E6StatusOvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6statusAA0E6StatusOvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6statusAA0E6StatusOvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6statusAA0E6StatusOvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvs", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7endTimeSSSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "updateTime", + "printedName": "updateTime", + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10updateTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10updateTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10updateTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10updateTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileId", + "printedName": "fileId", + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6fileIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6fileIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6fileIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6fileIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV9startTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV9startTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV9startTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV9startTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7versionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7versionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7versionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7versionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataJson", + "printedName": "metadataJson", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalTasks", + "printedName": "totalTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10totalTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10totalTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10totalTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV10totalTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedTasks", + "printedName": "completedTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV14completedTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV14completedTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV14completedTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV14completedTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "config", + "printedName": "config", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6configSayAA0E4TaskVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6configSayAA0E4TaskVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6configSayAA0E4TaskVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6configSayAA0E4TaskVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowSubmitResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PartialWorkflowStatusResponse", + "printedName": "PartialWorkflowStatusResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV2idSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV2idSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV2idSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV2idSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7endTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7endTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7endTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7endTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "updateTime", + "printedName": "updateTime", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10updateTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10updateTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10updateTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10updateTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileId", + "printedName": "fileId", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6fileIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6fileIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6fileIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6fileIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV9startTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV9startTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV9startTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV9startTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7versionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7versionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7versionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7versionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataJson", + "printedName": "metadataJson", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedTasks", + "printedName": "completedTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV14completedTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV14completedTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV14completedTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV14completedTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalTasks", + "printedName": "totalTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10totalTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10totalTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10totalTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV10totalTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV8progressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV8progressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV8progressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV8progressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7messageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7messageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7messageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV7messageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estimatedCompletionTime", + "printedName": "estimatedCompletionTime", + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV23estimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV23estimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV23estimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV23estimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskStatuses", + "printedName": "taskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12taskStatusesSDyS2SGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12taskStatusesSDyS2SGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12taskStatusesSDyS2SGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV12taskStatusesSDyS2SGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "config", + "printedName": "config", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6configSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6configSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6configSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6configSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PartialWorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.PartialWorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowStatusResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowStatusResponse", + "printedName": "WorkflowStatusResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV2idSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV2idSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV2idSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV2idSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6statusAA0eF0Ovp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6statusAA0eF0Ovp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6statusAA0eF0Ovg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6statusAA0eF0Ovg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7endTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7endTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7endTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7endTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "updateTime", + "printedName": "updateTime", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV10updateTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV10updateTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV10updateTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV10updateTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileId", + "printedName": "fileId", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6fileIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6fileIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6fileIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6fileIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV9startTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV9startTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV9startTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV9startTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7versionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7versionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7versionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7versionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataJson", + "printedName": "metadataJson", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedTasks", + "printedName": "completedTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV14completedTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV14completedTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV14completedTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV14completedTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalTasks", + "printedName": "totalTasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV10totalTasksSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV10totalTasksSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV10totalTasksSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV10totalTasksSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV8progressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV8progressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV8progressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV8progressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7messageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7messageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV7messageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV7messageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estimatedCompletionTime", + "printedName": "estimatedCompletionTime", + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV23estimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV23estimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowStatusResponseV23estimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV23estimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskStatuses", + "printedName": "taskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV12taskStatusesSDySSAA0eF0OGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV12taskStatusesSDySSAA0eF0OGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatus", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatus", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowStatusO" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV12taskStatusesSDySSAA0eF0OGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV12taskStatusesSDySSAA0eF0OGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "config", + "printedName": "config", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6configSayAA0E4TaskVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6configSayAA0E4TaskVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTask]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTask", + "printedName": "PlaudDeviceBasicSDK.WorkflowTask", + "usr": "s:19PlaudDeviceBasicSDK12WorkflowTaskV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6configSayAA0E4TaskVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6configSayAA0E4TaskVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowStatusResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TranscriptSegment", + "printedName": "TranscriptSegment", + "children": [ + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5startSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5startSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5startSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5startSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "end", + "printedName": "end", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV3endSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV3endSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV3endSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV3endSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "speaker", + "printedName": "speaker", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV7speakerSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV7speakerSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV7speakerSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV7speakerSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV4textSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV4textSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV4textSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV4textSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "index", + "printedName": "index", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5indexSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5indexSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5indexSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5indexSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(start:end:speaker:text:index:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV5start3end7speaker4text5indexACSd_SdS2SSiSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV5start3end7speaker4text5indexACSd_SdS2SSiSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV", + "mangledName": "$s19PlaudDeviceBasicSDK17TranscriptSegmentV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TranscriptResult", + "printedName": "TranscriptResult", + "children": [ + { + "kind": "Var", + "name": "segments", + "printedName": "segments", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.TranscriptSegment]", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV8segmentsSayAA0E7SegmentVGvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV8segmentsSayAA0E7SegmentVGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.TranscriptSegment]", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV8segmentsSayAA0E7SegmentVGvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV8segmentsSayAA0E7SegmentVGvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "embeddings", + "printedName": "embeddings", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV10embeddingsSDySSSaySdGGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV10embeddingsSDySSSaySdGGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV10embeddingsSDySSSaySdGGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV10embeddingsSDySSSaySdGGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV6statusSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV6statusSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV6statusSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV6statusSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(segments:embeddings:status:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.TranscriptSegment]", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptSegment", + "printedName": "PlaudDeviceBasicSDK.TranscriptSegment", + "usr": "s:19PlaudDeviceBasicSDK17TranscriptSegmentV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "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": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV8segments10embeddings6statusACSayAA0E7SegmentVG_SDySSSaySdGGSgSiSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV8segments10embeddings6statusACSayAA0E7SegmentVG_SDySSSaySdGGSgSiSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "allSpeakers", + "printedName": "allSpeakers", + "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:19PlaudDeviceBasicSDK16TranscriptResultV11allSpeakersSaySSGvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV11allSpeakersSaySSGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK16TranscriptResultV11allSpeakersSaySSGvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV11allSpeakersSaySSGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "totalDuration", + "printedName": "totalDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13totalDurationSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13totalDurationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13totalDurationSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13totalDurationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "textBySpeaker", + "printedName": "textBySpeaker", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13textBySpeakerSDyS2SGvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13textBySpeakerSDyS2SGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13textBySpeakerSDyS2SGvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13textBySpeakerSDyS2SGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allText", + "printedName": "allText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV7allTextSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV7allTextSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK16TranscriptResultV7allTextSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV7allTextSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEmbeddings", + "printedName": "hasEmbeddings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13hasEmbeddingsSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13hasEmbeddingsSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13hasEmbeddingsSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13hasEmbeddingsSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getEmbeddings", + "printedName": "getEmbeddings(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV13getEmbeddings3forSaySdGSgSS_tF", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV13getEmbeddings3forSaySdGSgSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV", + "mangledName": "$s19PlaudDeviceBasicSDK16TranscriptResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CommunicationFeedback", + "printedName": "CommunicationFeedback", + "children": [ + { + "kind": "Var", + "name": "highlight", + "printedName": "highlight", + "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:19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlightSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlightSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlightSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlightSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestion", + "printedName": "suggestion", + "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:19PlaudDeviceBasicSDK21CommunicationFeedbackV10suggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV10suggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK21CommunicationFeedbackV10suggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV10suggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(highlight:suggestion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CommunicationFeedback", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlight10suggestionACSSSg_AFtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV9highlight10suggestionACSSSg_AFtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CommunicationFeedback", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV", + "mangledName": "$s19PlaudDeviceBasicSDK21CommunicationFeedbackV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DealIntention", + "printedName": "DealIntention", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV11descriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV11descriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13DealIntentionV11descriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV11descriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rating", + "printedName": "rating", + "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:19PlaudDeviceBasicSDK13DealIntentionV6ratingSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV6ratingSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13DealIntentionV6ratingSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV6ratingSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(description:rating:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV11description6ratingACSSSg_AFtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV11description6ratingACSSSg_AFtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV", + "mangledName": "$s19PlaudDeviceBasicSDK13DealIntentionV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DealReason", + "printedName": "DealReason", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV11descriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV11descriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK10DealReasonV11descriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV11descriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reason", + "printedName": "reason", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV6reasonSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV6reasonSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV6reasonSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV6reasonSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(description:reason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + }, + { + "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV11description6reasonACSSSg_SaySSGSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV11description6reasonACSSSg_SaySSGSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV", + "mangledName": "$s19PlaudDeviceBasicSDK10DealReasonV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoDealReason", + "printedName": "NoDealReason", + "children": [ + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV11descriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV11descriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK12NoDealReasonV11descriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV11descriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestion", + "printedName": "suggestion", + "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:19PlaudDeviceBasicSDK12NoDealReasonV10suggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV10suggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK12NoDealReasonV10suggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV10suggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reason", + "printedName": "reason", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV6reasonSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV6reasonSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV6reasonSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV6reasonSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(description:suggestion:reason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV11description10suggestion6reasonACSSSg_AGSaySSGSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV11description10suggestion6reasonACSSSg_AGSaySSGSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV", + "mangledName": "$s19PlaudDeviceBasicSDK12NoDealReasonV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DealAnalysis", + "printedName": "DealAnalysis", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK12DealAnalysisV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK12DealAnalysisV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "intention", + "printedName": "intention", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealIntention?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV9intentionAA0E9IntentionVSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV9intentionAA0E9IntentionVSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealIntention?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV9intentionAA0E9IntentionVSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV9intentionAA0E9IntentionVSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dealReason", + "printedName": "dealReason", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV10dealReasonAA0eH0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV10dealReasonAA0eH0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV10dealReasonAA0eH0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV10dealReasonAA0eH0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "noDealReason", + "printedName": "noDealReason", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.NoDealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV02noE6ReasonAA02NoeH0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV02noE6ReasonAA02NoeH0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.NoDealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV02noE6ReasonAA02NoeH0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV02noE6ReasonAA02NoeH0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(status:intention:dealReason:noDealReason:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealAnalysis", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV" + }, + { + "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": "PlaudDeviceBasicSDK.DealIntention?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealIntention", + "printedName": "PlaudDeviceBasicSDK.DealIntention", + "usr": "s:19PlaudDeviceBasicSDK13DealIntentionV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealReason", + "printedName": "PlaudDeviceBasicSDK.DealReason", + "usr": "s:19PlaudDeviceBasicSDK10DealReasonV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.NoDealReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "NoDealReason", + "printedName": "PlaudDeviceBasicSDK.NoDealReason", + "usr": "s:19PlaudDeviceBasicSDK12NoDealReasonV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV6status9intention10dealReason02noeJ0ACSSSg_AA0E9IntentionVSgAA0eJ0VSgAA02NoeJ0VSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV6status9intention10dealReason02noeJ0ACSSSg_AA0E9IntentionVSgAA0eJ0VSgAA02NoeJ0VSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DealAnalysis", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV", + "mangledName": "$s19PlaudDeviceBasicSDK12DealAnalysisV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AIEtlResult", + "printedName": "AIEtlResult", + "children": [ + { + "kind": "Var", + "name": "assessmentTreatmentPairs", + "printedName": "assessmentTreatmentPairs", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV24assessmentTreatmentPairsSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV24assessmentTreatmentPairsSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV24assessmentTreatmentPairsSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV24assessmentTreatmentPairsSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appellation", + "printedName": "appellation", + "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:19PlaudDeviceBasicSDK11AIEtlResultV11appellationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV11appellationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK11AIEtlResultV11appellationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV11appellationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "communicationFeedback", + "printedName": "communicationFeedback", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommunicationFeedback", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV21communicationFeedbackAA013CommunicationH0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV21communicationFeedbackAA013CommunicationH0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback?", + "children": [ + { + "kind": "TypeNominal", + "name": "CommunicationFeedback", + "printedName": "PlaudDeviceBasicSDK.CommunicationFeedback", + "usr": "s:19PlaudDeviceBasicSDK21CommunicationFeedbackV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV21communicationFeedbackAA013CommunicationH0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV21communicationFeedbackAA013CommunicationH0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clinicalReport", + "printedName": "clinicalReport", + "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:19PlaudDeviceBasicSDK11AIEtlResultV14clinicalReportSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV14clinicalReportSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK11AIEtlResultV14clinicalReportSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV14clinicalReportSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mapped", + "printedName": "mapped", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV6mappedSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV6mappedSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV6mappedSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV6mappedSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcription", + "printedName": "transcription", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV13transcriptionAA010TranscriptF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV13transcriptionAA010TranscriptF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV13transcriptionAA010TranscriptF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV13transcriptionAA010TranscriptF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "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:19PlaudDeviceBasicSDK11AIEtlResultV7summarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV7summarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK11AIEtlResultV7summarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV7summarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customerProjects", + "printedName": "customerProjects", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV16customerProjectsSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV16customerProjectsSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV16customerProjectsSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV16customerProjectsSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unmapped", + "printedName": "unmapped", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV8unmappedSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV8unmappedSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV8unmappedSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV8unmappedSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dealAnalysis", + "printedName": "dealAnalysis", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealAnalysis", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV12dealAnalysisAA04DealH0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV12dealAnalysisAA04DealH0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis?", + "children": [ + { + "kind": "TypeNominal", + "name": "DealAnalysis", + "printedName": "PlaudDeviceBasicSDK.DealAnalysis", + "usr": "s:19PlaudDeviceBasicSDK12DealAnalysisV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV12dealAnalysisAA04DealH0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV12dealAnalysisAA04DealH0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "doctorProjects", + "printedName": "doctorProjects", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV14doctorProjectsSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV14doctorProjectsSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV14doctorProjectsSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV14doctorProjectsSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "content", + "printedName": "content", + "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:19PlaudDeviceBasicSDK11AIEtlResultV7contentSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV7contentSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK11AIEtlResultV7contentSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV7contentSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV", + "mangledName": "$s19PlaudDeviceBasicSDK11AIEtlResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryResult", + "printedName": "AISummaryResult", + "children": [ + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "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:19PlaudDeviceBasicSDK15AISummaryResultV7summarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7summarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV7summarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7summarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keyPoints", + "printedName": "keyPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV9keyPointsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV9keyPointsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV9keyPointsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV9keyPointsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "actionItems", + "printedName": "actionItems", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV11actionItemsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV11actionItemsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV11actionItemsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV11actionItemsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "participants", + "printedName": "participants", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV12participantsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV12participantsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV12participantsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV12participantsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "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:19PlaudDeviceBasicSDK15AISummaryResultV8durationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV8durationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV8durationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV8durationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "template", + "printedName": "template", + "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:19PlaudDeviceBasicSDK15AISummaryResultV8templateSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV8templateSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV8templateSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV8templateSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "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:19PlaudDeviceBasicSDK15AISummaryResultV5modelSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV5modelSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV5modelSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV5modelSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "content", + "printedName": "content", + "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:19PlaudDeviceBasicSDK15AISummaryResultV7contentSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7contentSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV7contentSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7contentSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK15AISummaryResultV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "result", + "printedName": "result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryInnerResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV6resultAA0e5InnerF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6resultAA0e5InnerF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryInnerResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV6resultAA0e5InnerF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6resultAA0e5InnerF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "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:19PlaudDeviceBasicSDK15AISummaryResultV4textSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV4textSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryResultV4textSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV4textSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(summary:keyPoints:actionItems:participants:duration:template:model:content:status:result:text:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryInnerResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV7summary9keyPoints11actionItems12participants8duration8template5model7content6status6result4textACSSSg_SaySSGSgA2q5oA0e5InnerF0VSgAOtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV7summary9keyPoints11actionItems12participants8duration8template5model7content6status6result4textACSSSg_SaySSGSgA2q5oA0e5InnerF0VSgAOtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "extractedSummary", + "printedName": "extractedSummary", + "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:19PlaudDeviceBasicSDK15AISummaryResultV16extractedSummarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV16extractedSummarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK15AISummaryResultV16extractedSummarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV16extractedSummarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedKeyPoints", + "printedName": "extractedKeyPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV18extractedKeyPointsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV18extractedKeyPointsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV18extractedKeyPointsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV18extractedKeyPointsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedActionItems", + "printedName": "extractedActionItems", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV20extractedActionItemsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV20extractedActionItemsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV20extractedActionItemsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV20extractedActionItemsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedParticipants", + "printedName": "extractedParticipants", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV21extractedParticipantsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV21extractedParticipantsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV21extractedParticipantsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV21extractedParticipantsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedModel", + "printedName": "extractedModel", + "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:19PlaudDeviceBasicSDK15AISummaryResultV14extractedModelSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV14extractedModelSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK15AISummaryResultV14extractedModelSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV14extractedModelSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedLanguage", + "printedName": "extractedLanguage", + "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:19PlaudDeviceBasicSDK15AISummaryResultV17extractedLanguageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV17extractedLanguageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK15AISummaryResultV17extractedLanguageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV17extractedLanguageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extractedMarkdown", + "printedName": "extractedMarkdown", + "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:19PlaudDeviceBasicSDK15AISummaryResultV17extractedMarkdownSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV17extractedMarkdownSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK15AISummaryResultV17extractedMarkdownSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV17extractedMarkdownSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryInnerResult", + "printedName": "AISummaryInnerResult", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK20AISummaryInnerResultV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK20AISummaryInnerResultV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "result", + "printedName": "result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryDetailedResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV6resultAA0e8DetailedG0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6resultAA0e8DetailedG0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryDetailedResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV6resultAA0e8DetailedG0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6resultAA0e8DetailedG0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "text", + "printedName": "text", + "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:19PlaudDeviceBasicSDK20AISummaryInnerResultV4textSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV4textSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK20AISummaryInnerResultV4textSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV4textSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryInnerResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryInnerResult", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK20AISummaryInnerResultV", + "mangledName": "$s19PlaudDeviceBasicSDK20AISummaryInnerResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryDetailedResult", + "printedName": "AISummaryDetailedResult", + "children": [ + { + "kind": "Var", + "name": "summaryId", + "printedName": "summaryId", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV9summaryIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV9summaryIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV9summaryIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV9summaryIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "selectPromptType", + "printedName": "selectPromptType", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV16selectPromptTypeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV16selectPromptTypeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV16selectPromptTypeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV16selectPromptTypeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "speakerMapping", + "printedName": "speakerMapping", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV14speakerMappingSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV14speakerMappingSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV14speakerMappingSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV14speakerMappingSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "usePersona", + "printedName": "usePersona", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10usePersonaSbSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10usePersonaSbSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10usePersonaSbSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10usePersonaSbSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV7versionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV7versionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV7versionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV7versionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokensLens", + "printedName": "tokensLens", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10tokensLensSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10tokensLensSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10tokensLensSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10tokensLensSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "retryCount", + "printedName": "retryCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10retryCountSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10retryCountSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV10retryCountSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV10retryCountSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "header", + "printedName": "header", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryHeader", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV6headerAA0E6HeaderVSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV6headerAA0E6HeaderVSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryHeader", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV6headerAA0E6HeaderVSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV6headerAA0E6HeaderVSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "summary", + "printedName": "summary", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV7summarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV7summarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV7summarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV7summarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSuggestion", + "printedName": "aiSuggestion", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV12aiSuggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV12aiSuggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV12aiSuggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV12aiSuggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "language", + "printedName": "language", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8languageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8languageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8languageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8languageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "markdown", + "printedName": "markdown", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8markdownSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8markdownSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8markdownSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8markdownSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "form", + "printedName": "form", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryForm", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV4formAA0E4FormVSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV4formAA0E4FormVSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryForm", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV4formAA0E4FormVSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV4formAA0E4FormVSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endpoint", + "printedName": "endpoint", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8endpointSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8endpointSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8endpointSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8endpointSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryContent]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryContent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryContent", + "printedName": "PlaudDeviceBasicSDK.AISummaryContent", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8contentsSayAA0E7ContentVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8contentsSayAA0E7ContentVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryContent]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryContent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryContent", + "printedName": "PlaudDeviceBasicSDK.AISummaryContent", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8contentsSayAA0E7ContentVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8contentsSayAA0E7ContentVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV5modelSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV5modelSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK23AISummaryDetailedResultV5modelSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV5modelSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "textLens", + "printedName": "textLens", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8textLensSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8textLensSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV8textLensSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV8textLensSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryDetailedResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryDetailedResult", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK23AISummaryDetailedResultV", + "mangledName": "$s19PlaudDeviceBasicSDK23AISummaryDetailedResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryHeader", + "printedName": "AISummaryHeader", + "children": [ + { + "kind": "Var", + "name": "category", + "printedName": "category", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV8categorySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8categorySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV8categorySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8categorySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "industryCategory", + "printedName": "industryCategory", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV16industryCategorySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV16industryCategorySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV16industryCategorySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV16industryCategorySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "languageCode", + "printedName": "languageCode", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV12languageCodeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV12languageCodeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV12languageCodeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV12languageCodeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keywords", + "printedName": "keywords", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV8keywordsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8keywordsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV8keywordsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8keywordsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "recommendQuestions", + "printedName": "recommendQuestions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryQuestion]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryQuestion]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryQuestion", + "printedName": "PlaudDeviceBasicSDK.AISummaryQuestion", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV18recommendQuestionsSayAA0E8QuestionVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV18recommendQuestionsSayAA0E8QuestionVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryQuestion]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryQuestion]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryQuestion", + "printedName": "PlaudDeviceBasicSDK.AISummaryQuestion", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV18recommendQuestionsSayAA0E8QuestionVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV18recommendQuestionsSayAA0E8QuestionVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "summaryType", + "printedName": "summaryType", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV11summaryTypeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV11summaryTypeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV11summaryTypeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV11summaryTypeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "originalCategory", + "printedName": "originalCategory", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV16originalCategorySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV16originalCategorySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV16originalCategorySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV16originalCategorySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "summaryId", + "printedName": "summaryId", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV9summaryIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV9summaryIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV9summaryIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV9summaryIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headline", + "printedName": "headline", + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV8headlineSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8headlineSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK15AISummaryHeaderV8headlineSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV8headlineSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryHeader", + "printedName": "PlaudDeviceBasicSDK.AISummaryHeader", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryHeaderV", + "mangledName": "$s19PlaudDeviceBasicSDK15AISummaryHeaderV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryQuestion", + "printedName": "AISummaryQuestion", + "children": [ + { + "kind": "Var", + "name": "question", + "printedName": "question", + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV8questionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV8questionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV8questionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV8questionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "category", + "printedName": "category", + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV8categorySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV8categorySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV8categorySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV8categorySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mainPurpose", + "printedName": "mainPurpose", + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV11mainPurposeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV11mainPurposeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK17AISummaryQuestionV11mainPurposeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV11mainPurposeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryQuestion", + "printedName": "PlaudDeviceBasicSDK.AISummaryQuestion", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK17AISummaryQuestionV", + "mangledName": "$s19PlaudDeviceBasicSDK17AISummaryQuestionV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryForm", + "printedName": "AISummaryForm", + "children": [ + { + "kind": "Var", + "name": "arrangements", + "printedName": "arrangements", + "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:19PlaudDeviceBasicSDK13AISummaryFormV12arrangementsSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV12arrangementsSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV12arrangementsSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV12arrangementsSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "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:19PlaudDeviceBasicSDK13AISummaryFormV4infoSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV4infoSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV4infoSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV4infoSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "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:19PlaudDeviceBasicSDK13AISummaryFormV8locationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV8locationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV8locationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV8locationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSuggestions", + "printedName": "aiSuggestions", + "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:19PlaudDeviceBasicSDK13AISummaryFormV13aiSuggestionsSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV13aiSuggestionsSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV13aiSuggestionsSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV13aiSuggestionsSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "insertMore", + "printedName": "insertMore", + "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:19PlaudDeviceBasicSDK13AISummaryFormV10insertMoreSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV10insertMoreSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV10insertMoreSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV10insertMoreSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "notes", + "printedName": "notes", + "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:19PlaudDeviceBasicSDK13AISummaryFormV5notesSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV5notesSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV5notesSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV5notesSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conclusion", + "printedName": "conclusion", + "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:19PlaudDeviceBasicSDK13AISummaryFormV10conclusionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV10conclusionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV10conclusionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV10conclusionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dateTime", + "printedName": "dateTime", + "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:19PlaudDeviceBasicSDK13AISummaryFormV8dateTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV8dateTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV8dateTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV8dateTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "attendees", + "printedName": "attendees", + "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:19PlaudDeviceBasicSDK13AISummaryFormV9attendeesSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV9attendeesSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK13AISummaryFormV9attendeesSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV9attendeesSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryForm", + "printedName": "PlaudDeviceBasicSDK.AISummaryForm", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK13AISummaryFormV", + "mangledName": "$s19PlaudDeviceBasicSDK13AISummaryFormV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryContent", + "printedName": "AISummaryContent", + "children": [ + { + "kind": "Var", + "name": "speakerNameMapping", + "printedName": "speakerNameMapping", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV18speakerNameMappingSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV18speakerNameMappingSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV18speakerNameMappingSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV18speakerNameMappingSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arrangements", + "printedName": "arrangements", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV12arrangementsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV12arrangementsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV12arrangementsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV12arrangementsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "topics", + "printedName": "topics", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV6topicsSayAA0E5TopicVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV6topicsSayAA0E5TopicVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV6topicsSayAA0E5TopicVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV6topicsSayAA0E5TopicVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "theme", + "printedName": "theme", + "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:19PlaudDeviceBasicSDK16AISummaryContentV5themeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV5themeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16AISummaryContentV5themeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV5themeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSuggestion", + "printedName": "aiSuggestion", + "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:19PlaudDeviceBasicSDK16AISummaryContentV12aiSuggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV12aiSuggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK16AISummaryContentV12aiSuggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV12aiSuggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryContent", + "printedName": "PlaudDeviceBasicSDK.AISummaryContent", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK16AISummaryContentV", + "mangledName": "$s19PlaudDeviceBasicSDK16AISummaryContentV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AISummaryTopic", + "printedName": "AISummaryTopic", + "children": [ + { + "kind": "Var", + "name": "topic", + "printedName": "topic", + "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:19PlaudDeviceBasicSDK14AISummaryTopicV5topicSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV5topicSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK14AISummaryTopicV5topicSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV5topicSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conclusion", + "printedName": "conclusion", + "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:19PlaudDeviceBasicSDK14AISummaryTopicV10conclusionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV10conclusionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK14AISummaryTopicV10conclusionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV10conclusionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV11descriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV11descriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK14AISummaryTopicV11descriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV11descriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV", + "mangledName": "$s19PlaudDeviceBasicSDK14AISummaryTopicV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PartialWorkflowResultResponse", + "printedName": "PartialWorkflowResultResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV2idSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV2idSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV2idSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV2idSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6statusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6statusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6statusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6statusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskResults", + "printedName": "taskResults", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedAt", + "printedName": "completedAt", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11completedAtSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11completedAtSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11completedAtSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV11completedAtSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8durationSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8durationSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8durationSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8durationSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7messageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7messageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7messageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV7messageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8progressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8progressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8progressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV8progressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estimatedCompletionTime", + "printedName": "estimatedCompletionTime", + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV23estimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV23estimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV23estimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV23estimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskStatuses", + "printedName": "taskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV12taskStatusesSDyS2SGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV12taskStatusesSDyS2SGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV12taskStatusesSDyS2SGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV12taskStatusesSDyS2SGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tasks", + "printedName": "tasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV5tasksSayAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV5tasksSayAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV5tasksSayAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV5tasksSayAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PartialWorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.PartialWorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK29PartialWorkflowResultResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowResult", + "printedName": "WorkflowResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": "<τ_0_0> (PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>.Type) -> (τ_0_0) -> PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0) -> PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO7successyACyxGxcAEmlF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowResultO7successyACyxGxcAEmlF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "failure", + "printedName": "failure", + "children": [ + { + "kind": "TypeFunc", + "name": "GenericFunction", + "printedName": "<τ_0_0> (PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO7failureyACyxGs5Error_pcAEmlF", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowResultO7failureyACyxGs5Error_pcAEmlF", + "moduleName": "PlaudDeviceBasicSDK" + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO", + "mangledName": "$s19PlaudDeviceBasicSDK14WorkflowResultO", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "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": "TypeDecl", + "name": "WorkflowError", + "printedName": "WorkflowError", + "children": [ + { + "kind": "Var", + "name": "invalidURL", + "printedName": "invalidURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO10invalidURLyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO10invalidURLyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "networkError", + "printedName": "networkError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO07networkF0yACs0F0_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO07networkF0yACs0F0_pcACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidResponse", + "printedName": "invalidResponse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO15invalidResponseyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO15invalidResponseyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "serverError", + "printedName": "serverError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO06serverF0yACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO06serverF0yACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "workflowNotFound", + "printedName": "workflowNotFound", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO16workflowNotFoundyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO16workflowNotFoundyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "workflowFailed", + "printedName": "workflowFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO14workflowFailedyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO14workflowFailedyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "timeout", + "printedName": "timeout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO7timeoutyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO7timeoutyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "noApiToken", + "printedName": "noApiToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO10noApiTokenyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO10noApiTokenyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "urlBuildFailed", + "printedName": "urlBuildFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowError", + "printedName": "PlaudDeviceBasicSDK.WorkflowError", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO14urlBuildFailedyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO14urlBuildFailedyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "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:19PlaudDeviceBasicSDK13WorkflowErrorO16errorDescriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO16errorDescriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK13WorkflowErrorO16errorDescriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO16errorDescriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK13WorkflowErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK13WorkflowErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudWorkflowManager", + "printedName": "PlaudWorkflowManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWorkflowManager", + "printedName": "PlaudDeviceBasicSDK.PlaudWorkflowManager", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC6sharedACvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWorkflowManager", + "printedName": "PlaudDeviceBasicSDK.PlaudWorkflowManager", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC6sharedACvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "submitWorkflow", + "printedName": "submitWorkflow(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowSubmitRequest", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitRequest", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC06submitE0_10completionyAA0E13SubmitRequestV_yAA0E6ResultOyAA0eI8ResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC06submitE0_10completionyAA0E13SubmitRequestV_yAA0E6ResultOyAA0eI8ResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWorkflowStatus", + "printedName": "getWorkflowStatus(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC03getE6Status_10completionySS_yAA0E6ResultOyAA0eH8ResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC03getE6Status_10completionySS_yAA0E6ResultOyAA0eH8ResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWorkflowResults", + "printedName": "getWorkflowResults(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC03getE7Results_10completionySS_yAA0E6ResultOyAA0eJ8ResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC03getE7Results_10completionySS_yAA0E6ResultOyAA0eJ8ResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "submitAndWaitForCompletion", + "printedName": "submitAndWaitForCompletion(_:timeout:progressHandler:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowSubmitRequest", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitRequest", + "usr": "s:19PlaudDeviceBasicSDK21WorkflowSubmitRequestV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC26submitAndWaitForCompletion_7timeout15progressHandler10completionyAA0E13SubmitRequestV_SdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0etS0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC26submitAndWaitForCompletion_7timeout15progressHandler10completionyAA0E13SubmitRequestV_SdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0etS0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pollWorkflowStatus", + "printedName": "pollWorkflowStatus(workflowId:timeout:progressHandler:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC04pollE6Status10workflowId7timeout15progressHandler10completionySS_SdyAA0eH8ResponseVcSgyAA0E6ResultOyAA0epO0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC04pollE6Status10workflowId7timeout15progressHandler10completionySS_SdyAA0eH8ResponseVcSgyAA0E6ResultOyAA0epO0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAudioTranscribeWorkflow", + "printedName": "createAudioTranscribeWorkflow(fileId:language:diarization:transcriptType:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC021createAudioTranscribeE06fileId8language11diarization14transcriptType10completionySS_SSSbSSSgyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC021createAudioTranscribeE06fileId8language11diarization14transcriptType10completionySS_SSSbSSSgyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAIEtlWorkflow", + "printedName": "createAIEtlWorkflow(etlType:extras:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC011createAIEtlE07etlType6extras10completionySS_SDySSypGyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC011createAIEtlE07etlType6extras10completionySS_SDySSypGyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createAudioMergeWorkflow", + "printedName": "createAudioMergeWorkflow(fileIdList:groupId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC016createAudioMergeE010fileIdList05groupK010completionySaySSG_SSyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC016createAudioMergeE010fileIdList05groupK010completionySaySSG_SSyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createTranscribeAndAnalysisWorkflow", + "printedName": "createTranscribeAndAnalysisWorkflow(fileId:language:diarization:transcriptType:etlType:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC027createTranscribeAndAnalysisE06fileId8language11diarization14transcriptType03etlP010completionySS_SSSbSSSgSSyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC027createTranscribeAndAnalysisE06fileId8language11diarization14transcriptType03etlP010completionySS_SSSbSSSgSSyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMergeAndAnalysisWorkflow", + "printedName": "createMergeAndAnalysisWorkflow(fileIdList:groupId:etlType:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowSubmitResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowSubmitResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowSubmitResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC022createMergeAndAnalysisE010fileIdList05groupL07etlType10completionySaySSG_S2SyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC022createMergeAndAnalysisE010fileIdList05groupL07etlType10completionySaySSG_S2SyAA0E6ResultOyAA0E14SubmitResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doAudioTranscribeWorkflow", + "printedName": "doAudioTranscribeWorkflow(fileId:language:diarization:transcriptType:timeout:progressHandler:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "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": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC017doAudioTranscribeE06fileId8language11diarization14transcriptType7timeout15progressHandler10completionySS_SSSbSSSgSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0evU0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC017doAudioTranscribeE06fileId8language11diarization14transcriptType7timeout15progressHandler10completionySS_SSSbSSSgSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0evU0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doTranscribeAndAnalysisWorkflow", + "printedName": "doTranscribeAndAnalysisWorkflow(fileId:language:diarization:transcriptType:etlType:timeout:progressHandler:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC023doTranscribeAndAnalysisE06fileId8language11diarization14transcriptType03etlP07timeout15progressHandler10completionySS_SSSbSSSgSSSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0exW0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC023doTranscribeAndAnalysisE06fileId8language11diarization14transcriptType03etlP07timeout15progressHandler10completionySS_SSSbSSSgSSSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0exW0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doTranscribeAndAISummaryWorkflow", + "printedName": "doTranscribeAndAISummaryWorkflow(fileId:language:diarization:transcriptType:templateId:prompt:model:startTime:timeout:progressHandler:completion:)", + "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": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "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": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC024doTranscribeAndAISummaryE06fileId8language11diarization14transcriptType08templateL06prompt5model9startTime7timeout15progressHandler10completionySS_SSSbSSSgSSAPSSSiSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0E14ResultResponseVGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC024doTranscribeAndAISummaryE06fileId8language11diarization14transcriptType08templateL06prompt5model9startTime7timeout15progressHandler10completionySS_SSSbSSSgSSAPSSSiSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0E14ResultResponseVGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doAudioMergeWorkflow", + "printedName": "doAudioMergeWorkflow(fileIdList:groupId:timeout:progressHandler:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC012doAudioMergeE010fileIdList05groupK07timeout15progressHandler10completionySaySSG_SSSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0etS0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC012doAudioMergeE010fileIdList05groupK07timeout15progressHandler10completionySaySSG_SSSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0etS0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doMergeAndAnalysisWorkflow", + "printedName": "doMergeAndAnalysisWorkflow(fileIdList:groupId:etlType:timeout:progressHandler:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowStatusResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowStatusResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowStatusResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowStatusResponseV" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "WorkflowResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowResult", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + } + ], + "usr": "s:19PlaudDeviceBasicSDK14WorkflowResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC018doMergeAndAnalysisE010fileIdList05groupL07etlType7timeout15progressHandler10completionySaySSG_S2SSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0ewV0VGctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC018doMergeAndAnalysisE010fileIdList05groupL07etlType7timeout15progressHandler10completionySaySSG_S2SSdyAA0E14StatusResponseVcSgyAA0E6ResultOyAA0ewV0VGctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A15WorkflowManagerC", + "mangledName": "$s19PlaudDeviceBasicSDK0A15WorkflowManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudWorkflowManagerTest", + "printedName": "PlaudWorkflowManagerTest", + "children": [ + { + "kind": "Function", + "name": "runCompleteWorkflowTest", + "printedName": "runCompleteWorkflowTest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC011runCompleteeG0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC011runCompleteeG0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testAudioTranscribeWorkflow", + "printedName": "testAudioTranscribeWorkflow(fileId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC019testAudioTranscribeE06fileIdySS_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC019testAudioTranscribeE06fileIdySS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testAIEtlWorkflow", + "printedName": "testAIEtlWorkflow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC09testAIEtlE0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC09testAIEtlE0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testTranscribeAndAnalysisWorkflow", + "printedName": "testTranscribeAndAnalysisWorkflow(fileId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "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": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC025testTranscribeAndAnalysisE06fileId10completionySS_ySbctFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC025testTranscribeAndAnalysisE06fileId10completionySS_ySbctFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testAudioMergeWorkflow", + "printedName": "testAudioMergeWorkflow(fileIdList:)", + "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": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC014testAudioMergeE010fileIdListySaySSG_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC014testAudioMergeE010fileIdListySaySSG_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testMergeAndAnalysisWorkflow", + "printedName": "testMergeAndAnalysisWorkflow(fileId:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "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": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC020testMergeAndAnalysisE06fileId10completionySS_ySbctFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC020testMergeAndAnalysisE06fileId10completionySS_ySbctFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testCustomWorkflow", + "printedName": "testCustomWorkflow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC010testCustomE0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC010testCustomE0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testJSONParsingFix", + "printedName": "testJSONParsingFix()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC18testJSONParsingFixyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC18testJSONParsingFixyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testDoAudioTranscribeWorkflow", + "printedName": "testDoAudioTranscribeWorkflow(fileId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC021testDoAudioTranscribeE06fileIdySS_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC021testDoAudioTranscribeE06fileIdySS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testURLBuilding", + "printedName": "testURLBuilding()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC15testURLBuildingyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC15testURLBuildingyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testWorkflowStatusResponseParsing", + "printedName": "testWorkflowStatusResponseParsing()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE21StatusResponseParsingyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE21StatusResponseParsingyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testNewWorkflowResultResponseParsing", + "printedName": "testNewWorkflowResultResponseParsing()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC07testNewE21ResultResponseParsingyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC07testNewE21ResultResponseParsingyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testWorkflowResultResponseWithAIEtl", + "printedName": "testWorkflowResultResponseWithAIEtl()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE23ResultResponseWithAIEtlyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE23ResultResponseWithAIEtlyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testTranscribeAndAISummaryWorkflow", + "printedName": "testTranscribeAndAISummaryWorkflow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC026testTranscribeAndAISummaryE0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC026testTranscribeAndAISummaryE0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "testWorkflowResultResponseWithComplexAISummary", + "printedName": "testWorkflowResultResponseWithComplexAISummary()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE34ResultResponseWithComplexAISummaryyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04testE34ResultResponseWithComplexAISummaryyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pollWorkflowCompletion", + "printedName": "pollWorkflowCompletion(workflowId:description:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "hasDefaultArg": true + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04pollE10Completion10workflowId11description10completionySS_SSySbctFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC04pollE10Completion10workflowId11description10completionySS_SSySbctFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A19WorkflowManagerTestC", + "mangledName": "$s19PlaudDeviceBasicSDK0A19WorkflowManagerTestC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "PlaudWorkflowManagerExample", + "printedName": "PlaudWorkflowManagerExample", + "children": [ + { + "kind": "Function", + "name": "runAllExamples", + "printedName": "runAllExamples()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC14runAllExamplesyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC14runAllExamplesyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "simpleTranscribeExample", + "printedName": "simpleTranscribeExample()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC016simpleTranscribeG0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC016simpleTranscribeG0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "batchProcessingExample", + "printedName": "batchProcessingExample()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC015batchProcessingG0yyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC015batchProcessingG0yyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC", + "mangledName": "$s19PlaudDeviceBasicSDK0A22WorkflowManagerExampleC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "TestAgent", + "printedName": "TestAgent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "TestAgent", + "printedName": "PlaudDeviceBasicSDK.TestAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK9TestAgentC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TestAgent", + "printedName": "PlaudDeviceBasicSDK.TestAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK9TestAgentC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "testFunc", + "printedName": "testFunc()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent(im)testFunc", + "mangledName": "$s19PlaudDeviceBasicSDK9TestAgentC8testFuncSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)TestAgent", + "mangledName": "$s19PlaudDeviceBasicSDK9TestAgentC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "WorkflowResultResponse", + "printedName": "WorkflowResultResponse", + "children": [ + { + "kind": "Var", + "name": "id", + "printedName": "id", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV2idSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV2idSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV2idSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV2idSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV6statusSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6statusSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV6statusSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6statusSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ownerId", + "printedName": "ownerId", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV7ownerIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7ownerIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV7ownerIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7ownerIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataJson", + "printedName": "metadataJson", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12metadataJsonSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12metadataJsonSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileId", + "printedName": "fileId", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV6fileIdSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6fileIdSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV6fileIdSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6fileIdSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tasks", + "printedName": "tasks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV5tasksSayAA0e4TaskF0VGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV5tasksSayAA0e4TaskF0VGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.WorkflowTaskResult]", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV5tasksSayAA0e4TaskF0VGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV5tasksSayAA0e4TaskF0VGvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadata", + "printedName": "metadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8metadataSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7resultsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskResults", + "printedName": "taskResults", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : PlaudDeviceBasicSDK.AnyCodable]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11taskResultsSDySSAA10AnyCodableVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completedAt", + "printedName": "completedAt", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV11completedAtSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11completedAtSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV11completedAtSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11completedAtSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8durationSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8durationSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8durationSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8durationSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV7messageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7messageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV7messageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV7messageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "progress", + "printedName": "progress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8progressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8progressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV8progressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8progressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "estimatedCompletionTime", + "printedName": "estimatedCompletionTime", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV23estimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23estimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV23estimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23estimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskStatuses", + "printedName": "taskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12taskStatusesSDyS2SGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12taskStatusesSDyS2SGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12taskStatusesSDyS2SGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12taskStatusesSDyS2SGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowResultResponse", + "printedName": "PlaudDeviceBasicSDK.WorkflowResultResponse", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "legacyResults", + "printedName": "legacyResults", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyResultsSDySSypGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyResultsSDySSypGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyResultsSDySSypGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyResultsSDySSypGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyTaskResults", + "printedName": "legacyTaskResults", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyTaskResultsSDySSypGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyTaskResultsSDySSypGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyTaskResultsSDySSypGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyTaskResultsSDySSypGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyCompletedAt", + "printedName": "legacyCompletedAt", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyCompletedAtSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyCompletedAtSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyCompletedAtSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17legacyCompletedAtSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyDuration", + "printedName": "legacyDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyDurationSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyDurationSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyDurationSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyDurationSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyProgress", + "printedName": "legacyProgress", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyProgressSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyProgressSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyProgressSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14legacyProgressSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyMessage", + "printedName": "legacyMessage", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyMessageSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyMessageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyMessageSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13legacyMessageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyEstimatedCompletionTime", + "printedName": "legacyEstimatedCompletionTime", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV29legacyEstimatedCompletionTimeSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV29legacyEstimatedCompletionTimeSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV29legacyEstimatedCompletionTimeSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV29legacyEstimatedCompletionTimeSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "legacyTaskStatuses", + "printedName": "legacyTaskStatuses", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18legacyTaskStatusesSDyS2SGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18legacyTaskStatusesSDyS2SGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18legacyTaskStatusesSDyS2SGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18legacyTaskStatusesSDyS2SGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstTranscriptResult", + "printedName": "firstTranscriptResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV015firstTranscriptF0AA0iF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV015firstTranscriptF0AA0iF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV015firstTranscriptF0AA0iF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV015firstTranscriptF0AA0iF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstAIEtlResult", + "printedName": "firstAIEtlResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV010firstAIEtlF0AA0iF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV010firstAIEtlF0AA0iF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV010firstAIEtlF0AA0iF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV010firstAIEtlF0AA0iF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstAISummaryResult", + "printedName": "firstAISummaryResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV014firstAISummaryF0AA0iF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV014firstAISummaryF0AA0iF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV014firstAISummaryF0AA0iF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV014firstAISummaryF0AA0iF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allTranscriptText", + "printedName": "allTranscriptText", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV17allTranscriptTextSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17allTranscriptTextSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17allTranscriptTextSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17allTranscriptTextSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptBySpeaker", + "printedName": "transcriptBySpeaker", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV19transcriptBySpeakerSDyS2SGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19transcriptBySpeakerSDyS2SGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV19transcriptBySpeakerSDyS2SGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19transcriptBySpeakerSDyS2SGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptTask", + "printedName": "transcriptTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14transcriptTaskAA0eiF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14transcriptTaskAA0eiF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14transcriptTaskAA0eiF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14transcriptTaskAA0eiF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlTask", + "printedName": "aiEtlTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV9aiEtlTaskAA0ejF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9aiEtlTaskAA0ejF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV9aiEtlTaskAA0ejF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9aiEtlTaskAA0ejF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryTask", + "printedName": "aiSummaryTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTaskAA0ejF0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTaskAA0ejF0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTaskAA0ejF0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTaskAA0ejF0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptDuration", + "printedName": "transcriptDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18transcriptDurations5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18transcriptDurations5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18transcriptDurations5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18transcriptDurations5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlDuration", + "printedName": "aiEtlDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiEtlDurations5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiEtlDurations5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiEtlDurations5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiEtlDurations5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryDurationSeconds", + "printedName": "aiSummaryDurationSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV24aiSummaryDurationSecondsSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV24aiSummaryDurationSecondsSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV24aiSummaryDurationSecondsSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV24aiSummaryDurationSecondsSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptDurationSeconds", + "printedName": "transcriptDurationSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV25transcriptDurationSecondsSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV25transcriptDurationSecondsSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV25transcriptDurationSecondsSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV25transcriptDurationSecondsSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlDurationSeconds", + "printedName": "aiEtlDurationSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiEtlDurationSecondsSdSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiEtlDurationSecondsSdSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiEtlDurationSecondsSdSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiEtlDurationSecondsSdSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSuccess", + "printedName": "isSuccess", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV9isSuccessSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9isSuccessSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV9isSuccessSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9isSuccessSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "segmentCount", + "printedName": "segmentCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12segmentCountSivp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12segmentCountSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12segmentCountSivg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12segmentCountSivg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allSpeakers", + "printedName": "allSpeakers", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV11allSpeakersSaySSGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11allSpeakersSaySSGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV11allSpeakersSaySSGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV11allSpeakersSaySSGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "speakers", + "printedName": "speakers", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV8speakersSaySSGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8speakersSaySSGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV8speakersSaySSGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV8speakersSaySSGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptTotalDuration", + "printedName": "transcriptTotalDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV23transcriptTotalDurationSdvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23transcriptTotalDurationSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV23transcriptTotalDurationSdvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23transcriptTotalDurationSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlSummary", + "printedName": "aiEtlSummary", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV12aiEtlSummarySSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12aiEtlSummarySSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV12aiEtlSummarySSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12aiEtlSummarySSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryText", + "printedName": "aiSummaryText", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTextSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTextSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTextSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13aiSummaryTextSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryKeyPoints", + "printedName": "aiSummaryKeyPoints", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18aiSummaryKeyPointsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18aiSummaryKeyPointsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV18aiSummaryKeyPointsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV18aiSummaryKeyPointsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryActionItems", + "printedName": "aiSummaryActionItems", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiSummaryActionItemsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiSummaryActionItemsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiSummaryActionItemsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20aiSummaryActionItemsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryParticipants", + "printedName": "aiSummaryParticipants", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV21aiSummaryParticipantsSaySSGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV21aiSummaryParticipantsSaySSGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV21aiSummaryParticipantsSaySSGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV21aiSummaryParticipantsSaySSGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryTemplate", + "printedName": "aiSummaryTemplate", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryTemplateSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryTemplateSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryTemplateSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryTemplateSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryModel", + "printedName": "aiSummaryModel", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV14aiSummaryModelSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14aiSummaryModelSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV14aiSummaryModelSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14aiSummaryModelSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryDuration", + "printedName": "aiSummaryDuration", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryDurationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryDurationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryDurationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryDurationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryHeadline", + "printedName": "aiSummaryHeadline", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryHeadlineSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryHeadlineSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryHeadlineSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17aiSummaryHeadlineSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryTopics", + "printedName": "aiSummaryTopics", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV15aiSummaryTopicsSayAA14AISummaryTopicVGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV15aiSummaryTopicsSayAA14AISummaryTopicVGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AISummaryTopic]", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryTopic", + "printedName": "PlaudDeviceBasicSDK.AISummaryTopic", + "usr": "s:19PlaudDeviceBasicSDK14AISummaryTopicV" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV15aiSummaryTopicsSayAA14AISummaryTopicVGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV15aiSummaryTopicsSayAA14AISummaryTopicVGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clinicalReport", + "printedName": "clinicalReport", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV14clinicalReportSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14clinicalReportSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV14clinicalReportSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14clinicalReportSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dealStatus", + "printedName": "dealStatus", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV10dealStatusSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV10dealStatusSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV10dealStatusSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV10dealStatusSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dealIntentionRating", + "printedName": "dealIntentionRating", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV19dealIntentionRatingSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19dealIntentionRatingSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV19dealIntentionRatingSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19dealIntentionRatingSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "communicationHighlight", + "printedName": "communicationHighlight", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV22communicationHighlightSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV22communicationHighlightSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV22communicationHighlightSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV22communicationHighlightSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "communicationSuggestion", + "printedName": "communicationSuggestion", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV23communicationSuggestionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23communicationSuggestionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV23communicationSuggestionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV23communicationSuggestionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "customerAppellation", + "printedName": "customerAppellation", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV19customerAppellationSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19customerAppellationSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV19customerAppellationSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV19customerAppellationSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasAIEtlTask", + "printedName": "hasAIEtlTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12hasAIEtlTaskSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12hasAIEtlTaskSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV12hasAIEtlTaskSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV12hasAIEtlTaskSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasAISummaryTask", + "printedName": "hasAISummaryTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV16hasAISummaryTaskSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV16hasAISummaryTaskSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV16hasAISummaryTaskSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV16hasAISummaryTaskSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasTranscriptTask", + "printedName": "hasTranscriptTask", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV17hasTranscriptTaskSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17hasTranscriptTaskSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV17hasTranscriptTaskSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV17hasTranscriptTaskSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskTypes", + "printedName": "taskTypes", + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV9taskTypesSaySSGvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9taskTypesSaySSGvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "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:19PlaudDeviceBasicSDK22WorkflowResultResponseV9taskTypesSaySSGvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV9taskTypesSaySSGvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "embeddingsData", + "printedName": "embeddingsData", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14embeddingsDataSDySSSaySdGGSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14embeddingsDataSDySSSaySdGGSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.Double]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.Double]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV14embeddingsDataSDySSSaySdGGSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV14embeddingsDataSDySSSaySdGGSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasEmbeddings", + "printedName": "hasEmbeddings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13hasEmbeddingsSbvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13hasEmbeddingsSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV13hasEmbeddingsSbvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV13hasEmbeddingsSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transcriptStatusCode", + "printedName": "transcriptStatusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20transcriptStatusCodeSiSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20transcriptStatusCodeSiSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV20transcriptStatusCodeSiSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV20transcriptStatusCodeSiSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK22WorkflowResultResponseV", + "mangledName": "$s19PlaudDeviceBasicSDK22WorkflowResultResponseV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowTaskResult", + "printedName": "WorkflowTaskResult", + "children": [ + { + "kind": "Var", + "name": "taskId", + "printedName": "taskId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskIdSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskIdSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskIdSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskIdSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "taskType", + "printedName": "taskType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV8taskTypeSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV8taskTypeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV8taskTypeSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV8taskTypeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6statusSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6statusSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6statusSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6statusSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "startTime", + "printedName": "startTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV9startTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV9startTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV9startTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV9startTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endTime", + "printedName": "endTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV7endTimes5Int64VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV7endTimes5Int64VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV7endTimes5Int64VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV7endTimes5Int64VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "result", + "printedName": "result", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AnyCodable?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6resultAA10AnyCodableVSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6resultAA10AnyCodableVSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AnyCodable?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6resultAA10AnyCodableVSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6resultAA10AnyCodableVSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(taskId:taskType:status:startTime:endTime:result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int64?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AnyCodable?", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyCodable", + "printedName": "PlaudDeviceBasicSDK.AnyCodable", + "usr": "s:19PlaudDeviceBasicSDK10AnyCodableV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskId0H4Type6status9startTime03endM06resultACSS_S2Ss5Int64VSgAlA10AnyCodableVSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6taskId0H4Type6status9startTime03endM06resultACSS_S2Ss5Int64VSgAlA10AnyCodableVSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowTaskResult", + "printedName": "PlaudDeviceBasicSDK.WorkflowTaskResult", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debugPrintTaskResult", + "printedName": "debugPrintTaskResult()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV010debugPrintfG0yyF", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV010debugPrintfG0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "transcriptResult", + "printedName": "transcriptResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV010transcriptG0AA010TranscriptG0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV010transcriptG0AA010TranscriptG0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "TranscriptResult", + "printedName": "PlaudDeviceBasicSDK.TranscriptResult", + "usr": "s:19PlaudDeviceBasicSDK16TranscriptResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV010transcriptG0AA010TranscriptG0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV010transcriptG0AA010TranscriptG0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiEtlResult", + "printedName": "aiEtlResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV05aiEtlG0AA05AIEtlG0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV05aiEtlG0AA05AIEtlG0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AIEtlResult", + "printedName": "PlaudDeviceBasicSDK.AIEtlResult", + "usr": "s:19PlaudDeviceBasicSDK11AIEtlResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV05aiEtlG0AA05AIEtlG0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV05aiEtlG0AA05AIEtlG0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aiSummaryResult", + "printedName": "aiSummaryResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV09aiSummaryG0AA09AISummaryG0VSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV09aiSummaryG0AA09AISummaryG0VSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "AISummaryResult", + "printedName": "PlaudDeviceBasicSDK.AISummaryResult", + "usr": "s:19PlaudDeviceBasicSDK15AISummaryResultV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV09aiSummaryG0AA09AISummaryG0VSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV09aiSummaryG0AA09AISummaryG0VSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:19PlaudDeviceBasicSDK18WorkflowTaskResultV", + "mangledName": "$s19PlaudDeviceBasicSDK18WorkflowTaskResultV", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + }, + { + "kind": "TypeDecl", + "name": "WorkflowParsingError", + "printedName": "WorkflowParsingError", + "children": [ + { + "kind": "Var", + "name": "missingRequiredField", + "printedName": "missingRequiredField", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowParsingError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO20missingRequiredFieldyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO20missingRequiredFieldyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidDataStructure", + "printedName": "invalidDataStructure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowParsingError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO20invalidDataStructureyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO20invalidDataStructureyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "unsupportedFormat", + "printedName": "unsupportedFormat", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.WorkflowParsingError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.WorkflowParsingError", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "WorkflowParsingError", + "printedName": "PlaudDeviceBasicSDK.WorkflowParsingError", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO17unsupportedFormatyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO17unsupportedFormatyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "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:19PlaudDeviceBasicSDK20WorkflowParsingErrorO16errorDescriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO16errorDescriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK20WorkflowParsingErrorO16errorDescriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO16errorDescriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK20WorkflowParsingErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK20WorkflowParsingErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CryptoKit", + "printedName": "CryptoKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "AudioFileDecryptor", + "printedName": "AudioFileDecryptor", + "children": [ + { + "kind": "Function", + "name": "decryptAudioFile", + "printedName": "decryptAudioFile(inputPath:privateKeyPem:outputPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor(cm)decryptAudioFileWithInputPath:privateKeyPem:outputPath:error:", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC07decrypteF09inputPath13privateKeyPem06outputJ0S2S_S2SSgtKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "decryptAudioFileWithInputPath:privateKeyPem:outputPath:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptAudioToOgg", + "printedName": "decryptAudioToOgg(inputPath:privateKeyPem:outputPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK18AudioFileDecryptorC07decryptE5ToOgg9inputPath13privateKeyPem06outputL0SSSgSS_SSAHtKFZ", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC07decryptE5ToOgg9inputPath13privateKeyPem06outputL0SSSgSS_SSAHtKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isFileEncrypted", + "printedName": "isFileEncrypted(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@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor(cm)isFileEncryptedWithPath:", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC02isF9Encrypted4pathSbSS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "isFileEncryptedWithPath:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getHeader", + "printedName": "getHeader(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor(cm)getHeaderWithPath:", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC9getHeader4pathAA0a7EncryptI0CSgSS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "getHeaderWithPath:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioFileDecryptor", + "printedName": "PlaudDeviceBasicSDK.AudioFileDecryptor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)AudioFileDecryptor", + "mangledName": "$s19PlaudDeviceBasicSDK18AudioFileDecryptorC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "AudioDecryptorError", + "printedName": "AudioDecryptorError", + "children": [ + { + "kind": "Var", + "name": "invalidHeader", + "printedName": "invalidHeader", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioDecryptorError.Type) -> PlaudDeviceBasicSDK.AudioDecryptorError", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError@AudioDecryptorErrorInvalidHeader", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO13invalidHeaderyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "invalidSymmetricKey", + "printedName": "invalidSymmetricKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioDecryptorError.Type) -> PlaudDeviceBasicSDK.AudioDecryptorError", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError@AudioDecryptorErrorInvalidSymmetricKey", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO19invalidSymmetricKeyyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "noEncryptedData", + "printedName": "noEncryptedData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioDecryptorError.Type) -> PlaudDeviceBasicSDK.AudioDecryptorError", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError@AudioDecryptorErrorNoEncryptedData", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO15noEncryptedDatayA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "decryptionFailed", + "printedName": "decryptionFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioDecryptorError.Type) -> PlaudDeviceBasicSDK.AudioDecryptorError", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError@AudioDecryptorErrorDecryptionFailed", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO16decryptionFailedyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError?", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioDecryptorError", + "printedName": "PlaudDeviceBasicSDK.AudioDecryptorError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_nsErrorDomain", + "printedName": "_nsErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO03_nsG6DomainSSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO03_nsG6DomainSSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK19AudioDecryptorErrorO03_nsG6DomainSSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO03_nsG6DomainSSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioDecryptorError", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioDecryptorErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "_BridgedNSError", + "printedName": "_BridgedNSError", + "usr": "s:10Foundation15_BridgedNSErrorP", + "mangledName": "$s10Foundation15_BridgedNSErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeableError", + "printedName": "_ObjectiveCBridgeableError", + "usr": "s:10Foundation26_ObjectiveCBridgeableErrorP", + "mangledName": "$s10Foundation26_ObjectiveCBridgeableErrorP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ChaCha20", + "printedName": "ChaCha20", + "children": [ + { + "kind": "Function", + "name": "decrypt", + "printedName": "decrypt(data: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:19PlaudDeviceBasicSDK8ChaCha20C7decrypt4data3key5nonce7counter10Foundation4DataVAK_A2Ks6UInt32VtKFZ", + "mangledName": "$s19PlaudDeviceBasicSDK8ChaCha20C7decrypt4data3key5nonce7counter10Foundation4DataVAK_A2Ks6UInt32VtKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifyRFC7539TestVector", + "printedName": "verifyRFC7539TestVector()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK8ChaCha20C23verifyRFC7539TestVectorSbyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK8ChaCha20C23verifyRFC7539TestVectorSbyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK8ChaCha20C", + "mangledName": "$s19PlaudDeviceBasicSDK8ChaCha20C", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "ChaCha20Error", + "printedName": "ChaCha20Error", + "children": [ + { + "kind": "Var", + "name": "invalidKeyLength", + "printedName": "invalidKeyLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.ChaCha20Error.Type) -> PlaudDeviceBasicSDK.ChaCha20Error", + "children": [ + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO16invalidKeyLengthyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO16invalidKeyLengthyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidNonceLength", + "printedName": "invalidNonceLength", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.ChaCha20Error.Type) -> PlaudDeviceBasicSDK.ChaCha20Error", + "children": [ + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO18invalidNonceLengthyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO18invalidNonceLengthyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + }, + { + "kind": "TypeNominal", + "name": "ChaCha20Error", + "printedName": "PlaudDeviceBasicSDK.ChaCha20Error", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO2eeoiySbAC_ACtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK13ChaCha20ErrorO9hashValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO9hashValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO9hashValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO9hashValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK13ChaCha20ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK13ChaCha20ErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK13ChaCha20ErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "OggOpusParser", + "printedName": "OggOpusParser", + "children": [ + { + "kind": "Function", + "name": "resetDecoder", + "printedName": "resetDecoder()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(cm)resetDecoder", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC12resetDecoderyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "parsedSampleRate", + "printedName": "parsedSampleRate", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(py)parsedSampleRate", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC16parsedSampleRateSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)parsedSampleRate", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC16parsedSampleRateSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parsedChannels", + "printedName": "parsedChannels", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(py)parsedChannels", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC14parsedChannelsSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)parsedChannels", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC14parsedChannelsSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "parsedPreSkip", + "printedName": "parsedPreSkip", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(py)parsedPreSkip", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC13parsedPreSkipSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)parsedPreSkip", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC13parsedPreSkipSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "parse", + "printedName": "parse(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.Data]", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)parse:", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC5parseySay10Foundation4DataVGAGF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "OggOpusParser", + "printedName": "PlaudDeviceBasicSDK.OggOpusParser", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)OggOpusParser", + "mangledName": "$s19PlaudDeviceBasicSDK13OggOpusParserC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDownloadFormat", + "children": [ + { + "kind": "Var", + "name": "pcm", + "printedName": "pcm", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDownloadFormat.Type) -> PlaudDeviceBasicSDK.PlaudDownloadFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat@PlaudDownloadFormatPcm", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO3pcmyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "mp3", + "printedName": "mp3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDownloadFormat.Type) -> PlaudDeviceBasicSDK.PlaudDownloadFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat@PlaudDownloadFormatMp3", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO3mp3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "wav", + "printedName": "wav", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudDownloadFormat.Type) -> PlaudDeviceBasicSDK.PlaudDownloadFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat@PlaudDownloadFormatWav", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO3wavyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat", + "mangledName": "$s19PlaudDeviceBasicSDK0A14DownloadFormatO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "AudioExportFormat", + "printedName": "AudioExportFormat", + "children": [ + { + "kind": "Var", + "name": "pcm", + "printedName": "pcm", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioExportFormat.Type) -> PlaudDeviceBasicSDK.AudioExportFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat@AudioExportFormatPcm", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO3pcmyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "mp3", + "printedName": "mp3", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioExportFormat.Type) -> PlaudDeviceBasicSDK.AudioExportFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat@AudioExportFormatMp3", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO3mp3yA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "wav", + "printedName": "wav", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioExportFormat.Type) -> PlaudDeviceBasicSDK.AudioExportFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat@AudioExportFormatWav", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO3wavyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "opus", + "printedName": "opus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.AudioExportFormat.Type) -> PlaudDeviceBasicSDK.AudioExportFormat", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat@AudioExportFormatOpus", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO4opusyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "fileExtension", + "printedName": "fileExtension", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK17AudioExportFormatO13fileExtensionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO13fileExtensionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK17AudioExportFormatO13fileExtensionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO13fileExtensionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat?", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat", + "mangledName": "$s19PlaudDeviceBasicSDK17AudioExportFormatO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "AudioExportCallback", + "printedName": "AudioExportCallback", + "children": [ + { + "kind": "Function", + "name": "onProgress", + "printedName": "onProgress(_:message:)", + "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@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback(im)onProgress:message:", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioExportCallbackP10onProgress_7messageySi_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.AudioExportCallback>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onComplete", + "printedName": "onComplete(outputPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback(im)onCompleteWithOutputPath:", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioExportCallbackP10onComplete10outputPathySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.AudioExportCallback>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onError", + "printedName": "onError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback(im)onError:", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioExportCallbackP7onErroryySSF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.AudioExportCallback>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback", + "mangledName": "$s19PlaudDeviceBasicSDK19AudioExportCallbackP", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudBleDevice", + "printedName": "PlaudBleDevice", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sn:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudBleDevice", + "printedName": "PlaudDeviceBasicSDK.PlaudBleDevice", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudBleDevice" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudBleDevice(im)initWithSn:", + "mangledName": "$s19PlaudDeviceBasicSDK0a3BleB0C2snACSS_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "initWithSn:", + "declAttributes": [ + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(peripheral:rssi:manufacturerData:localName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudBleDevice", + "printedName": "PlaudDeviceBasicSDK.PlaudBleDevice", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudBleDevice" + }, + { + "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:19PlaudDeviceBasicSDK0a3BleB0C10peripheral4rssi16manufacturerData9localNameACSo12CBPeripheralC_So8NSNumberC10Foundation0I0VSSSgtcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0a3BleB0C10peripheral4rssi16manufacturerData9localNameACSo12CBPeripheralC_So8NSNumberC10Foundation0I0VSSSgtcfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "declAttributes": [ + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudBleDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0a3BleB0C", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:@M@PlaudBleSDK@objc(cs)BleDevice", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "PlaudBleSDK.BleDevice", + "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": "PlaudDeviceAgentProtocol", + "printedName": "PlaudDeviceAgentProtocol", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleAppKeyStateWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleAppKeyState6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleAppKeyStateWithResult:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "blePenState", + "printedName": "blePenState(state:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP11blePenState5state7privacy03keyI05uDisk11findMyToken10hasSndpKey012deviceAccessP0ySi_S6itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDeviceNameWithName:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP03bleB4Name4nameySSSg_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDeviceNameWithName:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleScanResultWithBleDevices:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleScanResult0G7DevicesySay0a3BleD00kB0CG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleScanResultWithBleDevices:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleScanOverTime", + "printedName": "bleScanOverTime()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleScanOverTime", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleScanOverTimeyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleConnectStateWithState:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleConnectState5stateySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleConnectStateWithState:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleBindWithSn:status:protVersion:timezone:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP7bleBind2sn6status11protVersion8timezoneySSSg_S3itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleBindWithSn:status:protVersion:timezone:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleMicGain:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP10bleMicGainyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleStorageWithTotal:free:duration:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP10bleStorage5total4free8durationySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleStorageWithTotal:free:duration:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)blePowerChangeWithPower:oldPower:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14blePowerChange5power03oldH0ySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "blePowerChangeWithPower:oldPower:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleChargingStateWithIsCharging:level:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP16bleChargingState02isH05levelySb_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleChargingStateWithIsCharging:level:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleFileListWithBleFiles:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP11bleFileList0G5FilesySay0a3BleD00kH0CG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleFileListWithBleFiles:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleRecordStart", + "printedName": "bleRecordStart(sessionId:start:status:scene:startTime:reason:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRecordStartWithSessionId:start:status:scene:startTime:reason:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleRecordStart9sessionId5start6status5scene0L4Time6reasonySi_S5itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRecordStartWithSessionId:start:status:scene:startTime:reason:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRecordStopWithSessionId:reason:fileExist:fileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleRecordStop9sessionId6reason9fileExist0M4SizeySi_SiSbSitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRecordStopWithSessionId:reason:fileExist:fileSize:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRecordPauseWithSessionId:reason:fileExist:fileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleRecordPause9sessionId6reason9fileExist0M4SizeySi_SiSbSitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRecordPauseWithSessionId:reason:fileExist:fileSize:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRecordResumeWithSessionId:start:status:scene:startTime:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleRecordResume9sessionId5start6status5scene0L4TimeySi_S4itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRecordResumeWithSessionId:start:status:scene:startTime:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleSyncFileHeadWithSessionId:status:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleSyncFileHead9sessionId6statusySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleSyncFileHeadWithSessionId:status:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleSyncFileTailWithSessionId:crc:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleSyncFileTail9sessionId3crcySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleSyncFileTailWithSessionId:crc:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDataWithSessionId:start:data:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP7bleData9sessionId5start4dataySi_Si10Foundation0H0VtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDataWithSessionId:start:data:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)blePcmDataWithSessionId:millsec:pcmData:isMusic:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP10blePcmData9sessionId7millsec03pcmI07isMusicySi_Si10Foundation0I0VSbtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "blePcmDataWithSessionId:millsec:pcmData:isMusic:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDataComplete", + "printedName": "bleDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDataComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleDataCompleteyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDecodeFailWithStart:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleDecodeFail5startySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDecodeFailWithStart:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleSyncFileStop", + "printedName": "bleSyncFileStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleSyncFileStop", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleSyncFileStopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDownloadFile", + "printedName": "bleDownloadFile(sessionId:desiredOutputPath:status:progress:tips:)", + "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": "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": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDownloadFileWithSessionId:desiredOutputPath:status:progress:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP15bleDownloadFile9sessionId17desiredOutputPath6status8progress4tipsySi_SSS2iSStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDownloadFileWithSessionId:desiredOutputPath:status:progress:tips:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDownloadFileStop", + "printedName": "bleDownloadFileStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDownloadFileStop", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP19bleDownloadFileStopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDeleteFileWithSessionId:status:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleDeleteFile9sessionId6statusySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleDeleteFileWithSessionId:status:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleDepair:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP9bleDepairyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncConfigReceived", + "printedName": "onWifiSyncConfigReceived(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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncConfigReceivedWithIndex:ssid:password:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP24onWifiSyncConfigReceived5index4ssid8passwordys6UInt32V_S2StF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncConfigReceivedWithIndex:ssid:password:", + "declAttributes": [ + "Optional", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncConfigSet", + "printedName": "onWifiSyncConfigSet(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncConfigSetWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP19onWifiSyncConfigSet6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncConfigSetWithResult:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncListReceived", + "printedName": "onWifiSyncListReceived(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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncListReceivedWithList:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP22onWifiSyncListReceived4listySays6UInt32VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncListReceivedWithList:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncDeleteResult", + "printedName": "onWifiSyncDeleteResult(result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncDeleteResultWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP22onWifiSyncDeleteResult6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncDeleteResultWithResult:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncTestStarted", + "printedName": "onWifiSyncTestStarted(index:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncTestStartedWithIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP21onWifiSyncTestStarted5indexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncTestStartedWithIndex:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncWillStart", + "printedName": "onWifiSyncWillStart(seconds:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncWillStartWithSeconds:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP19onWifiSyncWillStart7secondsySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncWillStartWithSeconds:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncTestResult", + "printedName": "onWifiSyncTestResult(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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncTestResultWithIndex:result:rawCode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP20onWifiSyncTestResult5index6result7rawCodeys6UInt32V_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncTestResultWithIndex:result:rawCode:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncUrl", + "printedName": "onWifiSyncUrl(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncUrlWithUrl:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13onWifiSyncUrl3urlySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiSyncUrlWithUrl:", + "declAttributes": [ + "Optional", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiRssiRequestConfirmed", + "printedName": "onWifiRssiRequestConfirmed(status:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiRssiRequestConfirmedWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP26onWifiRssiRequestConfirmed6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onWifiRssiRequestConfirmedWithStatus:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSdkFetchPermissionResult", + "printedName": "onSdkFetchPermissionResult(pass:tips:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onSdkFetchPermissionResultWithPass:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP26onSdkFetchPermissionResult4pass4tipsySb_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onSdkFetchPermissionResultWithPass:tips:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSdkCheckPermissionResult", + "printedName": "onSdkCheckPermissionResult(pass:tips:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onSdkCheckPermissionResultWithPass:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP26onSdkCheckPermissionResult4pass4tipsySb_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onSdkCheckPermissionResultWithPass:tips:", + "declAttributes": [ + "Optional", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSdkCheckResourceResult", + "printedName": "onSdkCheckResourceResult(pass:tips:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onSdkCheckResourceResultWithPass:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP24onSdkCheckResourceResult4pass4tipsySb_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onSdkCheckResourceResultWithPass:tips:", + "declAttributes": [ + "Optional", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiSyncEnabled", + "printedName": "onWifiSyncEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onWifiSyncEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP17onWifiSyncEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onCommonMsgChannel", + "printedName": "onCommonMsgChannel(type:value:tips:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)onCommonMsgChannelWithType:value:tips:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP18onCommonMsgChannel4type5value4tipsySi_SiSStF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "onCommonMsgChannelWithType:value:tips:", + "declAttributes": [ + "Optional", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleWiFiOpen::::", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP11bleWiFiOpenyySi_S3StF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleFotaResultWithUid:status:errmsg:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP13bleFotaResult3uid6status6errmsgySi_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleFotaResultWithUid:status:errmsg:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleFotaPackReqWithUid:start:end:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleFotaPackReq3uid5start3endySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleFotaPackReqWithUid:start:end:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleFotaPackFinWithUid:status:errmsg:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP14bleFotaPackFin3uid6status6errmsgySi_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleFotaPackFinWithUid:status:errmsg:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleOtaDataSendFail", + "printedName": "bleOtaDataSendFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleOtaDataSendFail", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP18bleOtaDataSendFailyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleSetActiveWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP12bleSetActive6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleSetActiveWithStatus:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleCommonSetting", + "printedName": "bleCommonSetting(setting:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleCommonSettingWithSetting:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP16bleCommonSetting7settingySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleCommonSettingWithSetting:", + "declAttributes": [ + "Optional", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol(im)bleRateWithLossRate:rate:instantRate:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP7bleRate04lossH04rate07instantH0ySd_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "bleRateWithLossRate:rate:instantRate:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol", + "mangledName": "$s19PlaudDeviceBasicSDK0aB13AgentProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceAgent", + "printedName": "PlaudDeviceAgent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDeviceAgent", + "printedName": "PlaudDeviceBasicSDK.PlaudDeviceAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDeviceAgent", + "printedName": "PlaudDeviceBasicSDK.PlaudDeviceAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bleAgent", + "printedName": "bleAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudBleSDK.BleAgent?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleAgent", + "printedName": "PlaudBleSDK.BleAgent", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudBleSDK.BleAgent?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleAgent", + "printedName": "PlaudBleSDK.BleAgent", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudBleSDK.BleAgent?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleAgent", + "printedName": "PlaudBleSDK.BleAgent", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvs", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleE00a3BleD00gE0CSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recentConnectDevice", + "printedName": "recentConnectDevice", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)recentConnectDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)recentConnectDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setRecentConnectDevice:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC013recentConnectB00a3BleD00hB0CSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "sceneFlag", + "printedName": "sceneFlag", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)sceneFlag", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9sceneFlagSivp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)sceneFlag", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9sceneFlagSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isWiFiTransferActive", + "printedName": "isWiFiTransferActive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)isWiFiTransferActive", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20isWiFiTransferActiveSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)isWiFiTransferActive", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20isWiFiTransferActiveSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "skipPermissionCheck", + "printedName": "skipPermissionCheck", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)skipPermissionCheck", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)skipPermissionCheck", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setSkipPermissionCheck:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvM", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19skipPermissionCheckSbvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol)?" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(py)delegate", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDeviceAgentProtocol", + "printedName": "any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)delegate", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudDeviceAgentProtocol", + "printedName": "any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudDeviceAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDelegate:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8delegateAA0abE8Protocol_pSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "initSDK", + "printedName": "initSDK(userAccessToken:customDomain:extra:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)initSDKWithUserAccessToken:customDomain:extra:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC04initD015userAccessToken12customDomain5extraySS_SSSDyS2SGtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "initSDKWithUserAccessToken:customDomain:extra:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initSDK", + "printedName": "initSDK(hostName:appKey:appSecret:bindToken:extra:customDomain:partnerToken:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)initSDKWithHostName:appKey:appSecret:bindToken:extra:customDomain:partnerToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC04initD08hostName6appKey0I6Secret9bindToken5extra12customDomain07partnerM0ySS_S3SSDyS2SGSSSgAMtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "initSDKWithHostName:appKey:appSecret:bindToken:extra:customDomain:partnerToken:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUserAccessToken", + "printedName": "setUserAccessToken(_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setUserAccessToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18setUserAccessTokenyySSSgF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPartnerToken", + "printedName": "setPartnerToken(_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setPartnerToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15setPartnerTokenyySSSgF", + "moduleName": "PlaudDeviceBasicSDK", + "deprecated": true, + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPartnerApiManager", + "printedName": "getPartnerApiManager()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudPartnerApiManager", + "printedName": "PlaudDeviceBasicSDK.PlaudPartnerApiManager", + "usr": "s:19PlaudDeviceBasicSDK0A17PartnerApiManagerC" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC20getPartnerApiManagerAA0aghI0CyF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20getPartnerApiManagerAA0aghI0CyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isPartnerDataReady", + "printedName": "isPartnerDataReady()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)isPartnerDataReady", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18isPartnerDataReadySbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTestAppKey", + "printedName": "getTestAppKey(_:)", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(cm)getTestAppKey:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13getTestAppKeyySSSbFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getTestAppSecret", + "printedName": "getTestAppSecret(_:)", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(cm)getTestAppSecret:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16getTestAppSecretySSSbFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)depairWithClear:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC6depair5clearySb_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "depairWithClear:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDeviceWiFi", + "printedName": "setDeviceWiFi(open:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDeviceWiFiWithOpen:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03setB4WiFi4openySb_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setDeviceWiFiWithOpen:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endWiFiTransfer", + "printedName": "endWiFiTransfer()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)endWiFiTransfer", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15endWiFiTransferyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDeviceBinding", + "printedName": "setDeviceBinding(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDeviceBindingWithToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03setB7Binding5tokenySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setDeviceBindingWithToken:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startScan", + "printedName": "startScan()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)startScan", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9startScanyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopScan", + "printedName": "stopScan()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)stopScan", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8stopScanyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConnected", + "printedName": "isConnected()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)isConnected", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11isConnectedSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectBleDevice", + "printedName": "connectBleDevice(bleDevice:deviceToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)connectBleDeviceWithBleDevice:deviceToken:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC010connectBleB003bleB011deviceTokeny0agD00gB0C_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "connectBleDeviceWithBleDevice:deviceToken:", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)connectBleDeviceWithBleDevice:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC010connectBleB003bleB0y0agD00gB0C_tF", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)disconnect", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10disconnectyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "tryReconnectLastDevice", + "printedName": "tryReconnectLastDevice()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)tryReconnectLastDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC016tryReconnectLastB0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getState", + "printedName": "getState()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getState", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8getStateyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getStorage", + "printedName": "getStorage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getStorage", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10getStorageyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiSyncEnable", + "printedName": "getWifiSyncEnable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getWifiSyncEnable", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17getWifiSyncEnableyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setWifiSyncEnable", + "printedName": "setWifiSyncEnable(value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setWifiSyncEnableWithValue:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17setWifiSyncEnable5valueySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setWifiSyncEnableWithValue:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setWifiSyncTest", + "printedName": "setWifiSyncTest(wifiIndex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setWifiSyncTestWithWifiIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15setWifiSyncTest9wifiIndexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setWifiSyncTestWithWifiIndex:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiSyncTestResult", + "printedName": "getWifiSyncTestResult(wifiIndex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getWifiSyncTestResultWithWifiIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC21getWifiSyncTestResult9wifiIndexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getWifiSyncTestResultWithWifiIndex:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getChargingState", + "printedName": "getChargingState()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getChargingState", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16getChargingStateyyF", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setMicGainWithValue:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10setMicGain5valueySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setMicGainWithValue:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "readMicGain", + "printedName": "readMicGain()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)readMicGain", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11readMicGainyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUDiskMode", + "printedName": "setUDiskMode(onOff:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setUDiskModeOnOff:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12setUDiskMode5onOffySb_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setUDiskModeOnOff:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkIsRecording", + "printedName": "checkIsRecording()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)checkIsRecording", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16checkIsRecordingSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkIsDownloading", + "printedName": "checkIsDownloading()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)checkIsDownloading", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18checkIsDownloadingSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startRecord", + "printedName": "startRecord()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)startRecord", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11startRecordyyF", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDeviceActiveWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03setB6Active6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setDeviceActiveWithStatus:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopRecord", + "printedName": "stopRecord()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)stopRecord", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10stopRecordyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDeviceName", + "printedName": "setDeviceName(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setDeviceName:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03setB4NameyySSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentSessionID", + "printedName": "getCurrentSessionID()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getCurrentSessionID", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19getCurrentSessionIDSiyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pauseRecord", + "printedName": "pauseRecord()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)pauseRecord", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11pauseRecordyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resumeRecord", + "printedName": "resumeRecord()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)resumeRecord", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12resumeRecordyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFileList", + "printedName": "getFileList(startSessionId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getFileListWithStartSessionId:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11getFileList14startSessionIdySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getFileListWithStartSessionId:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFile", + "printedName": "getFile(sessionId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getFileWithSessionId:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC7getFile9sessionIdySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getFileWithSessionId:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "syncFile", + "printedName": "syncFile(sessionId: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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)syncFileWithSessionId:start:end:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8syncFile9sessionId5start3endySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "syncFileWithSessionId:start:end:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadFile", + "printedName": "downloadFile(sessionId:desiredOutputPath:format:)", + "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": "PlaudDownloadFormat", + "printedName": "PlaudDeviceBasicSDK.PlaudDownloadFormat", + "hasDefaultArg": true, + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudDownloadFormat" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)downloadFileWithSessionId:desiredOutputPath:format:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12downloadFile9sessionId17desiredOutputPath6formatySi_SSAA0A14DownloadFormatOtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "downloadFileWithSessionId:desiredOutputPath:format:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopDownloadFile", + "printedName": "stopDownloadFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)stopDownloadFile", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16stopDownloadFileyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exportAudio", + "printedName": "exportAudio(sessionId:outputDir:format:channels:callback:)", + "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": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "AudioExportCallback", + "printedName": "any PlaudDeviceBasicSDK.AudioExportCallback", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)exportAudioWithSessionId:outputDir:format:channels:callback:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11exportAudio9sessionId9outputDir6format8channels8callbackySi_SSAA0G12ExportFormatOSiAA0gO8Callback_ptF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "exportAudioWithSessionId:outputDir:format:channels:callback:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSupportedExportFormats", + "printedName": "getSupportedExportFormats()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudDeviceBasicSDK.AudioExportFormat]", + "children": [ + { + "kind": "TypeNominal", + "name": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC25getSupportedExportFormatsSayAA05AudioH6FormatOGyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC25getSupportedExportFormatsSayAA05AudioH6FormatOGyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSyncFile", + "printedName": "stopSyncFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)stopSyncFile", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12stopSyncFileyyF", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)deleteFileWithSessionId:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10deleteFile9sessionIdySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "deleteFileWithSessionId:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAllFiles", + "printedName": "clearAllFiles()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)clearAllFiles", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13clearAllFilesyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "restoreFactory", + "printedName": "restoreFactory()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)restoreFactory", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14restoreFactoryyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiSyncConfig", + "printedName": "getWifiSyncConfig(wifiIndex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getWifiSyncConfigWithWifiIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17getWifiSyncConfig9wifiIndexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getWifiSyncConfigWithWifiIndex:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setWifiSyncConfig", + "printedName": "setWifiSyncConfig(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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)setWifiSyncConfigWithOperation:wifiIndex:ssid:password:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17setWifiSyncConfig9operation9wifiIndex4ssid8passwordySi_s6UInt32VS2StF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "setWifiSyncConfigWithOperation:wifiIndex:ssid:password:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getWifiSyncList", + "printedName": "getWifiSyncList()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)getWifiSyncList", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15getWifiSyncListyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteWifiSyncConfig", + "printedName": "deleteWifiSyncConfig(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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)deleteWifiSyncConfigWithWifiIndices:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20deleteWifiSyncConfig11wifiIndicesySays6UInt32VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "deleteWifiSyncConfigWithWifiIndices:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleScanResultWithBleDevices:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleScanResult0F7DevicesySay0a3BleD00jB0CG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleScanResultWithBleDevices:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleScanOverTime", + "printedName": "bleScanOverTime()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleScanOverTime", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleScanOverTimeyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleScanOverTime", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAppKeyStateWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleAppKeyState6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAppKeyStateWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleConnectStateWithState:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleConnectState5stateySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleConnectStateWithState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleBindWithSn:status:protVersion:timezone:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC7bleBind2sn6status11protVersion8timezoneySSSg_S3itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleBindWithSn:status:protVersion:timezone:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:versionType:versionCode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11blePenState5state7privacy03keyH05uDisk11findMyToken10hasSndpKey012deviceAccessO011versionType0U4CodeySi_S6iSSSitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePenStateWithState:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:versionType:versionCode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleStorageWithTotal:free:duration:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleStorage5total4free8durationySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleStorageWithTotal:free:duration:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePowerChangeWithPower:oldPower:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14blePowerChange5power03oldG0ySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePowerChangeWithPower:oldPower:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleChargingStateWithIsCharging:level:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleChargingState02isG05levelySb_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleChargingStateWithIsCharging:level:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFileListWithBleFiles:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleFileList0F5FilesySay0a3BleD00jG0CG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFileListWithBleFiles:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDataComplete", + "printedName": "bleDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDataComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleDataCompleteyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDataComplete", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordStartWithSessionId:start:status:scene:startTime:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleRecordStart9sessionId5start6status5scene0K4TimeySi_S4itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordStartWithSessionId:start:status:scene:startTime:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordStopWithSessionId:reason:fileExist:fileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleRecordStop9sessionId6reason9fileExist0L4SizeySi_SiSbSitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordStopWithSessionId:reason:fileExist:fileSize:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordPauseWithSessionId:reason:fileExist:fileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleRecordPause9sessionId6reason9fileExist0L4SizeySi_SiSbSitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordPauseWithSessionId:reason:fileExist:fileSize:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordResumeWithSessionId:start:status:scene:startTime:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleRecordResume9sessionId5start6status5scene0K4TimeySi_S4itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordResumeWithSessionId:start:status:scene:startTime:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSyncFileHeadWithSessionId:status:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleSyncFileHead9sessionId6statusySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSyncFileHeadWithSessionId:status:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSyncFileTailWithSessionId:crc:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleSyncFileTail9sessionId3crcySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSyncFileTailWithSessionId:crc:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDataWithSessionId:start:data:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC7bleData9sessionId5start4dataySi_Si10Foundation0G0VtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDataWithSessionId:start:data:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePcmDataWithSessionId:millsec:pcmData:isMusic:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10blePcmData9sessionId7millsec03pcmH07isMusicySi_Si10Foundation0H0VSbtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePcmDataWithSessionId:millsec:pcmData:isMusic:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDecodeFailWithStart:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleDecodeFail5startySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDecodeFailWithStart:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleSyncFileStop", + "printedName": "bleSyncFileStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSyncFileStop", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleSyncFileStopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSyncFileStop", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDeleteFileWithSessionId:status:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleDeleteFile9sessionId6statusySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDeleteFileWithSessionId:status:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDepair:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9bleDepairyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDepair:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleMicGain:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleMicGainyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleMicGain:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiConfigReceivedWithIndex:ssid:password:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC28onSyncIdleWifiConfigReceived5index4ssid8passwordys6UInt32V_S2StF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiConfigReceivedWithIndex:ssid:password:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiConfigSetWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC23onSyncIdleWifiConfigSet6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiConfigSetWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiListReceivedWithList:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC26onSyncIdleWifiListReceived4listySays6UInt32VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiListReceivedWithList:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiDeleteResultWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC26onSyncIdleWifiDeleteResult6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiDeleteResultWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiTestStartedWithIndex:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC25onSyncIdleWifiTestStarted5indexys6UInt32V_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiTestStartedWithIndex:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWillStartWithSeconds:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19onSyncIdleWillStart7secondsySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWillStartWithSeconds:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncIdleWifiTestResultWithIndex:result:rawCode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC24onSyncIdleWifiTestResult5index6result7rawCodeys6UInt32V_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncIdleWifiTestResultWithIndex:result:rawCode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onWifiRssiRequestConfirmed", + "printedName": "onWifiRssiRequestConfirmed(status:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC26onWifiRssiRequestConfirmed6statusySi_tF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC26onWifiRssiRequestConfirmed6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSyncWhenIdleEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC22bleSyncWhenIdleEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSyncWhenIdleEnabled:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleUDiskErrWithFuncName:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleUDiskErr8funcNameySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleUDiskErrWithFuncName:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleWiFiOpen::::", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleWiFiOpenyySi_S3StF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleWiFiOpen::::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDeviceNameWithName:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleB4Name4nameySSSg_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDeviceNameWithName:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFotaResultWithUid:status:errmsg:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleFotaResult3uid6status6errmsgySi_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFotaResultWithUid:status:errmsg:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFotaPackReqWithUid:start:end:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleFotaPackReq3uid5start3endySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFotaPackReqWithUid:start:end:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFotaPackFinWithUid:status:errmsg:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleFotaPackFin3uid6status6errmsgySi_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFotaPackFinWithUid:status:errmsg:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleOtaDataSendFail", + "printedName": "bleOtaDataSendFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleOtaDataSendFail", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18bleOtaDataSendFailyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleOtaDataSendFail", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRateWithLossRate:rate:instantRate:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC7bleRate04lossG04rate07instantG0ySd_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRateWithLossRate:rate:instantRate:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSetActiveWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12bleSetActive6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSetActiveWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleCommonSetting", + "printedName": "bleCommonSetting(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16bleCommonSettingyySiF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleCommonSettingyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleHeartbeatWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12bleHeartbeat6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleHeartbeatWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleBatteryMode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleBatteryModeyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleBatteryMode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDeviceStatusWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleB6Status6statusySays5UInt8VG_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDeviceStatusWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleNewFeatureWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13bleNewFeature4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleNewFeatureWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleGetRecordMarkingTagsWithUid:totals:index:tags:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC23bleGetRecordMarkingTags3uid6totals5index4tagsySi_S2iSay0a3BleD00ohI3TagCGtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleGetRecordMarkingTagsWithUid:totals:index:tags:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)deviceLogDataWithStart:data:logType:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC13deviceLogData5start4data7logTypeySi_10Foundation0H0VSitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "deviceLogDataWithStart:data:logType:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onGetDeviceLogListWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC05onGetB7LogList4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onGetDeviceLogListWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncDeviceLogStartWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC06onSyncB8LogStart4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncDeviceLogStartWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "onSyncDeviceLogStop", + "printedName": "onSyncDeviceLogStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncDeviceLogStop", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC06onSyncB7LogStopyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncDeviceLogStop", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSyncDeviceLogEndWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC06onSyncB6LogEnd4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSyncDeviceLogEndWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onDeviceLogDeletedWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC02onB10LogDeleted4datay10Foundation4DataV_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onDeviceLogDeletedWithData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleUpdatePowerLowErr", + "printedName": "bleUpdatePowerLowErr()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleUpdatePowerLowErr", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20bleUpdatePowerLowErryyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleUpdatePowerLowErr", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDeviceDisconnectErr", + "printedName": "bleDeviceDisconnectErr()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleDeviceDisconnectErr", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC03bleB13DisconnectErryyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleDeviceDisconnectErr", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleStateWithPowered:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC8bleState7poweredySb_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleStateWithPowered:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleHandshakeWaitWithTimeout:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleHandshakeWait7timeoutySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleHandshakeWaitWithTimeout:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePenTimeWithStamp:timezone:zoneMin:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10blePenTime5stamp8timezone7zoneMinySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePenTimeWithStamp:timezone:zoneMin:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePasswordResetWithPassword:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16blePasswordReset8passwordySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePasswordResetWithPassword:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleBacklightDuration:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC20bleBacklightDurationyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleBacklightDuration:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleBacklightBright:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18bleBacklightBrightyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleBacklightBright:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleLanguage:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleLanguageyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleLanguage:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecScene:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleRecSceneyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecScene:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecMode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleRecModeyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecMode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVadSensitivity:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17bleVadSensitivityyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVadSensitivity:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVpuGain:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleVpuGainyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVpuGain:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSwitchHandler:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleSwitchHandleryySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSwitchHandler:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAutoPowerOff:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleAutoPowerOffyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAutoPowerOff:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRawWaveEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17bleRawWaveEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRawWaveEnabled:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleRecordingAfterDisConnetEnabled:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC33bleRecordingAfterDisConnetEnabledyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleRecordingAfterDisConnetEnabled:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleFindMyState:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleFindMyStateyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleFindMyState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVPUCLKState:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleVPUCLKStateyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVPUCLKState:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleStopRecordingAfterCharging:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC29bleStopRecordingAfterChargingyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleStopRecordingAfterCharging:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAutoClear:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12bleAutoClearyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAutoClear:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVad:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC6bleVadyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVad:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleWiFiClose:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12bleWiFiCloseyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleWiFiClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSetWiFiSsidWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleSetWiFiSsid6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSetWiFiSsidWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleGetWiFiSsidWithStatus:ssid:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleGetWiFiSsid6status4ssidySi_SSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleGetWiFiSsidWithStatus:ssid:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleVoiceAbnormalWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleVoiceAbnormal6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleVoiceAbnormalWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleWebsocketProfile::", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19bleWebsocketProfileyySi_SSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleWebsocketProfile::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleWebsocketTest:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16bleWebsocketTestyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleWebsocketTest:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleLedStateOnOff:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleLedState5onOffySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleLedStateOnOff:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleSetLedStateOnOff:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14bleSetLedState5onOffySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleSetLedStateOnOff:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleMarkingWithSessionId:status:markList:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10bleMarking9sessionId6status8markListySi_SiSays6UInt32VGtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleMarkingWithSessionId:status:markList:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAnglesWithPitchAngle:rollbackAngle:yawAngle:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC9bleAngles10pitchAngle08rollbackI003yawI0ySf_S2ftF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAnglesWithPitchAngle:rollbackAngle:yawAngle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)blePrivacyWithPrivacy:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC10blePrivacy7privacyySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "blePrivacyWithPrivacy:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleClearAllFileWithStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15bleClearAllFile6statusySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleClearAllFileWithStatus:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)bleAlarmRecWithStart:duration:repeatMode:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC11bleAlarmRec5start8duration10repeatModeySi_S2itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "bleAlarmRecWithStart:duration:repeatMode:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onResetFindmyResultWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19onResetFindmyResult6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onResetFindmyResultWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onCommonParamsSetResultWithSuccess:dataType:value:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC23onCommonParamsSetResult7success8dataType5valueySb_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onCommonParamsSetResultWithSuccess:dataType:value:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onCommonParamsGetResultWithSuccess:dataType:value:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC23onCommonParamsGetResult7success8dataType5valueySb_SiSSSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onCommonParamsGetResultWithSuccess:dataType:value:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onSetSoundPlusTokenResultWithLicenseKey:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC25onSetSoundPlusTokenResult10licenseKeyySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onSetSoundPlusTokenResultWithLicenseKey:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onGetSDFlashCIDResultWithCid:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC21onGetSDFlashCIDResult3cidySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onGetSDFlashCIDResultWithCid:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reportDeviceMetadata", + "printedName": "reportDeviceMetadata()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)reportDeviceMetadata", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC06reportB8MetadatayyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkFirmwareUpdate", + "printedName": "checkFirmwareUpdate(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwareCheckResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PlaudFirmwareCheckResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareCheckResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)checkFirmwareUpdateWithCompletion:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19checkFirmwareUpdate10completionyyAA0aG11CheckResultCc_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "checkFirmwareUpdateWithCompletion:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startFirmwareUpdate", + "printedName": "startFirmwareUpdate(progress:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PlaudFirmwareUpdateResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)startFirmwareUpdateWithProgress:completion:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19startFirmwareUpdate8progress10completionyyAA0aG5PhaseO_Sftc_yAA0agH6ResultCctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "startFirmwareUpdateWithProgress:completion:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pushFirmwareFile", + "printedName": "pushFirmwareFile(filePath:toVersion:progress:completion:)", + "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": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float)", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PlaudFirmwareUpdateResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)pushFirmwareFileWithFilePath:toVersion:progress:completion:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16pushFirmwareFile8filePath9toVersion8progress10completionySS_SSyAA0aG5PhaseO_SftcyAA0aG12UpdateResultCctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "pushFirmwareFileWithFilePath:toVersion:progress:completion:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendApiToken", + "printedName": "sendApiToken(token:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String)", + "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:19PlaudDeviceBasicSDK0aB5AgentC12sendApiToken5token8callbackySS_ySb_SStctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12sendApiToken5token8callbackySS_ySb_SStctF", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendBinaryFile", + "printedName": "sendBinaryFile(type:data:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String)", + "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:19PlaudDeviceBasicSDK0aB5AgentC14sendBinaryFile4type4data8callbackySi_10Foundation4DataVSgySb_SStctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14sendBinaryFile4type4data8callbackySi_10Foundation4DataVSgySb_SStctF", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onBinaryFileReqWithType:packageOffset:packageSize:endStatus:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15onBinaryFileReq4type13packageOffset0K4Size9endStatusySi_S3itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onBinaryFileReqWithType:packageOffset:packageSize:endStatus:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": 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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)onBinaryFileEndWithResult:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15onBinaryFileEnd6resultySi_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "onBinaryFileEndWithResult:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkDeviceState", + "printedName": "checkDeviceState(state:privacy:keyState:uDisk:findMyToken:hasSndpKey:deviceAccessToken:)", + "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" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC05checkB5State5state7privacy03keyG05uDisk11findMyToken10hasSndpKey012deviceAccessN0ySi_S6itF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC05checkB5State5state7privacy03keyG05uDisk11findMyToken10hasSndpKey012deviceAccessN0ySi_S6itF", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSDKCredentials", + "printedName": "clearSDKCredentials()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)clearSDKCredentials", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC19clearSDKCredentialsyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quickUpdateCheck", + "printedName": "quickUpdateCheck(device:showUI:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BleDevice", + "printedName": "PlaudBleSDK.BleDevice", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleDevice" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16quickUpdateCheck6device6showUI10completiony0a3BleD00mB0C_SbyAA0G6StatusOctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16quickUpdateCheck6device6showUI10completiony0a3BleD00mB0C_SbyAA0G6StatusOctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "quickUpdateCheck", + "printedName": "quickUpdateCheck(model:snType:versionType:showUI:completion:)", + "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": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool, Swift.String?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16quickUpdateCheck5model6snType07versionK06showUI10completionySS_S2SSbySb_SSSgtcSgtF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16quickUpdateCheck5model6snType07versionK06showUI10completionySS_S2SSbySb_SSSgtcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "silentUpdateCheck", + "printedName": "silentUpdateCheck(model:snType:versionType:completion:)", + "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, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "usr": "s:Sq" + }, + { + "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": "s:19PlaudDeviceBasicSDK0aB5AgentC17silentUpdateCheck5model6snType07versionK010completionySS_S2SySb_AA21LatestVersionResponseCSgs5Error_pSgtctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC17silentUpdateCheck5model6snType07versionK010completionySS_S2SySb_AA21LatestVersionResponseCSgs5Error_pSgtctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadUpdatePackage", + "printedName": "downloadUpdatePackage(downloadURL:model:versionNumber:versionCode:fileMD5:showProgress:completion:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC21downloadUpdatePackage0F3URL5model13versionNumber0K4Code7fileMD512showProgress10completionySS_S4SSgSbySb_ALtctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC21downloadUpdatePackage0F3URL5model13versionNumber0K4Code7fileMD512showProgress10completionySS_S4SSgSbySb_ALtctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkForceUpdate", + "printedName": "checkForceUpdate(model:snType:versionType:completion:)", + "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, PlaudDeviceBasicSDK.LatestVersionResponse?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16checkForceUpdate5model6snType07versionK010completionySS_S2SySb_AA21LatestVersionResponseCSgtctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16checkForceUpdate5model6snType07versionK010completionySS_S2SySb_AA21LatestVersionResponseCSgtctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDownloadedUpdatePackages", + "printedName": "getDownloadedUpdatePackages()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC27getDownloadedUpdatePackagesSaySSGyF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC27getDownloadedUpdatePackagesSaySSGyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanDownloadedUpdatePackages", + "printedName": "cleanDownloadedUpdatePackages()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC29cleanDownloadedUpdatePackagesSbyF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC29cleanDownloadedUpdatePackagesSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "compareVersions", + "printedName": "compareVersions(_:_:)", + "children": [ + { + "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" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC15compareVersionsySiSS_SStF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC15compareVersionsySiSS_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUpdate", + "printedName": "shouldUpdate(currentVersion:latestVersion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC12shouldUpdate14currentVersion06latestI0SbSS_SStF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC12shouldUpdate14currentVersion06latestI0SbSS_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formatFileSize", + "printedName": "formatFileSize(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC14formatFileSizeySSs5Int64VF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14formatFileSizeySSs5Int64VF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkSdkResource", + "printedName": "checkSdkResource()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC16checkSdkResourceyyF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC16checkSdkResourceyyF", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkLatestVersion", + "printedName": "checkLatestVersion(model:snType:versionType:callback:)", + "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": "(PlaudDeviceBasicSDK.UpdateStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC18checkLatestVersion5model6snType07versionK08callbackySS_S2SyAA12UpdateStatusOctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18checkLatestVersion5model6snType07versionK08callbackySS_S2SyAA12UpdateStatusOctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showUpdateConfirmation", + "printedName": "showUpdateConfirmation(versionInfo:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)showUpdateConfirmationWithVersionInfo:completion:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC22showUpdateConfirmation11versionInfo10completionyAA21LatestVersionResponseC_ySbctF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "showUpdateConfirmationWithVersionInfo:completion:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadUpdate", + "printedName": "downloadUpdate(versionInfo:callback:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC14downloadUpdate11versionInfo8callbackyAA21LatestVersionResponseC_yAA0G6StatusOctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC14downloadUpdate11versionInfo8callbackyAA21LatestVersionResponseC_yAA0G6StatusOctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "performUpdateCheck", + "printedName": "performUpdateCheck(model:snType:versionType:callback:)", + "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": "(PlaudDeviceBasicSDK.UpdateStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0aB5AgentC18performUpdateCheck5model6snType07versionK08callbackySS_S2SyAA0G6StatusOctF", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC18performUpdateCheck5model6snType07versionK08callbackySS_S2SyAA0G6StatusOctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkLatestVersionForModel", + "printedName": "checkLatestVersionForModel(_:snType:versionType:hasUpdate:failure:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)checkLatestVersionForModel:snType:versionType:hasUpdate:failure:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC26checkLatestVersionForModel_6snType07versionL09hasUpdate7failureySS_S2SySb_AA0gH8ResponseCSgtcySSctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "downloadUpdateForVersion", + "printedName": "downloadUpdateForVersion(_:progress:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Float) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent(im)downloadUpdateForVersion:progress:success:failure:", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC24downloadUpdateForVersion_8progress7success7failureyAA06LatestI8ResponseC_ySfcySScySSctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudDeviceAgent", + "mangledName": "$s19PlaudDeviceBasicSDK0aB5AgentC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "BleAgentProtocol", + "printedName": "BleAgentProtocol", + "usr": "c:@M@PlaudBleSDK@objc(pl)BleAgentProtocol", + "mangledName": "$s11PlaudBleSDK0B13AgentProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "EncryptionError", + "printedName": "EncryptionError", + "children": [ + { + "kind": "Var", + "name": "noKey", + "printedName": "noKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorNoKey", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO5noKeyyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "noNonce", + "printedName": "noNonce", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorNoNonce", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO7noNonceyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "noAD", + "printedName": "noAD", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorNoAD", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO4noADyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "dataTooShort", + "printedName": "dataTooShort", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorDataTooShort", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO12dataTooShortyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "decryptionFailed", + "printedName": "decryptionFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.EncryptionError.Type) -> PlaudDeviceBasicSDK.EncryptionError", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.EncryptionError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError@EncryptionErrorDecryptionFailed", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO16decryptionFailedyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "localizedDescription", + "printedName": "localizedDescription", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO20localizedDescriptionSSvp", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO20localizedDescriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO20localizedDescriptionSSvg", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO20localizedDescriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.EncryptionError?", + "children": [ + { + "kind": "TypeNominal", + "name": "EncryptionError", + "printedName": "PlaudDeviceBasicSDK.EncryptionError", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_nsErrorDomain", + "printedName": "_nsErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO03_nsF6DomainSSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO03_nsF6DomainSSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15EncryptionErrorO03_nsF6DomainSSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO03_nsF6DomainSSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@EncryptionError", + "mangledName": "$s19PlaudDeviceBasicSDK15EncryptionErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "_BridgedNSError", + "printedName": "_BridgedNSError", + "usr": "s:10Foundation15_BridgedNSErrorP", + "mangledName": "$s10Foundation15_BridgedNSErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeableError", + "printedName": "_ObjectiveCBridgeableError", + "usr": "s:10Foundation26_ObjectiveCBridgeableErrorP", + "mangledName": "$s10Foundation26_ObjectiveCBridgeableErrorP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "ObjectiveC", + "printedName": "ObjectiveC", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudFirmwarePhase", + "children": [ + { + "kind": "Var", + "name": "downloading", + "printedName": "downloading", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type) -> PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase@PlaudFirmwarePhaseDownloading", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO11downloadingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "installing", + "printedName": "installing", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type) -> PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase@PlaudFirmwarePhaseInstalling", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO10installingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "restarting", + "printedName": "restarting", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type) -> PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase@PlaudFirmwarePhaseRestarting", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO10restartingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "complete", + "printedName": "complete", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type) -> PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase@PlaudFirmwarePhaseComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO8completeyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwarePhase", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwarePhase", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueACSgSi_tcfc", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueACSgSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "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:19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueSivp", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueSivg", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO8rawValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@PlaudDeviceBasicSDK@E@PlaudFirmwarePhase", + "mangledName": "$s19PlaudDeviceBasicSDK0A13FirmwarePhaseO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "PlaudFirmwareUpdateResult", + "printedName": "PlaudFirmwareUpdateResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(py)success", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC7successSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(im)success", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC7successSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(py)version", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC7versionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(im)version", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC7versionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(py)errorMessage", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC12errorMessageSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(im)errorMessage", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC12errorMessageSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwareUpdateResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareUpdateResult", + "mangledName": "$s19PlaudDeviceBasicSDK0A20FirmwareUpdateResultC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudFirmwareCheckResult", + "printedName": "PlaudFirmwareCheckResult", + "children": [ + { + "kind": "Var", + "name": "hasUpdate", + "printedName": "hasUpdate", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)hasUpdate", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC9hasUpdateSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)hasUpdate", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC9hasUpdateSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentVersion", + "printedName": "currentVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)currentVersion", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC14currentVersionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)currentVersion", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC14currentVersionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "latestVersion", + "printedName": "latestVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)latestVersion", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC13latestVersionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)latestVersion", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC13latestVersionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "versionCode", + "printedName": "versionCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)versionCode", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC11versionCodeSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)versionCode", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC11versionCodeSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "releaseNotes", + "printedName": "releaseNotes", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)releaseNotes", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC12releaseNotesSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)releaseNotes", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC12releaseNotesSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "downloadUrl", + "printedName": "downloadUrl", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)downloadUrl", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC11downloadUrlSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)downloadUrl", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC11downloadUrlSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "md5", + "printedName": "md5", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)md5", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC3md5SSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)md5", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC3md5SSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isForce", + "printedName": "isForce", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(py)isForce", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC7isForceSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)isForce", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC7isForceSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudFirmwareCheckResult", + "printedName": "PlaudDeviceBasicSDK.PlaudFirmwareCheckResult", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudFirmwareCheckResult", + "mangledName": "$s19PlaudDeviceBasicSDK0A19FirmwareCheckResultC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Function", + "name": "PlaudQuickUpdateCheck", + "printedName": "PlaudQuickUpdateCheck(model:snType:versionType:showUI:completion:)", + "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": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool, Swift.String?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A16QuickUpdateCheck5model6snType07versionJ06showUI10completionySS_S2SSbySb_SSSgtcSgtF", + "mangledName": "$s19PlaudDeviceBasicSDK0A16QuickUpdateCheck5model6snType07versionJ06showUI10completionySS_S2SSbySb_SSSgtcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "PlaudSilentUpdateCheck", + "printedName": "PlaudSilentUpdateCheck(model:snType:versionType:completion:)", + "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, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "usr": "s:Sq" + }, + { + "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": "s:19PlaudDeviceBasicSDK0A17SilentUpdateCheck5model6snType07versionJ010completionySS_S2SySb_AA21LatestVersionResponseCSgs5Error_pSgtctF", + "mangledName": "$s19PlaudDeviceBasicSDK0A17SilentUpdateCheck5model6snType07versionJ010completionySS_S2SySb_AA21LatestVersionResponseCSgs5Error_pSgtctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "LatestVersionResponse", + "printedName": "LatestVersionResponse", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)type", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC4typeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)type", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC4typeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "model", + "printedName": "model", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)model", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC5modelSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)model", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC5modelSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version_type", + "printedName": "version_type", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version_type", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12version_typeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version_type", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12version_typeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version_code", + "printedName": "version_code", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version_code", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12version_codeSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version_code", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12version_codeSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version_number", + "printedName": "version_number", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version_number", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC14version_numberSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version_number", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC14version_numberSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version_description", + "printedName": "version_description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version_description", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC19version_descriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version_description", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC19version_descriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "is_force", + "printedName": "is_force", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)is_force", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC8is_forceSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)is_force", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC8is_forceSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "is_strong_guidance", + "printedName": "is_strong_guidance", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)is_strong_guidance", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC18is_strong_guidanceSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)is_strong_guidance", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC18is_strong_guidanceSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "file_md5", + "printedName": "file_md5", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)file_md5", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC8file_md5SSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)file_md5", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC8file_md5SSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "download_url", + "printedName": "download_url", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)download_url", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12download_urlSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)download_url", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12download_urlSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(type:model:version_type:version_code:version_number:version_description:is_force:is_strong_guidance:file_md5:download_url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21LatestVersionResponseC4type5model08version_H00J5_code0J7_number0J12_description8is_force0N16_strong_guidance8file_md512download_urlACSS_S5SS2bSSSgSStcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC4type5model08version_H00J5_code0J7_number0J12_description8is_force0N16_strong_guidance8file_md512download_urlACSS_S5SS2bSSSgSStcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)version", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC7versionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)version", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC7versionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "release_notes", + "printedName": "release_notes", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)release_notes", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC13release_notesSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)release_notes", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC13release_notesSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "force_update", + "printedName": "force_update", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(py)force_update", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12force_updateSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)force_update", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC12force_updateSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + }, + { + "kind": "TypeNominal", + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" + } + ], + "declKind": "Constructor", + "usr": "s:19PlaudDeviceBasicSDK21LatestVersionResponseC4fromACs7Decoder_p_tKcfc", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC4fromACs7Decoder_p_tKcfc", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Required" + ], + "throwing": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK21LatestVersionResponseC6encode2toys7Encoder_p_tKF", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC6encode2toys7Encoder_p_tKF", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse", + "mangledName": "$s19PlaudDeviceBasicSDK21LatestVersionResponseC", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "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": "UpdateStatus", + "printedName": "UpdateStatus", + "children": [ + { + "kind": "Var", + "name": "checking", + "printedName": "checking", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO8checkingyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO8checkingyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "available", + "printedName": "available", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> (PlaudDeviceBasicSDK.LatestVersionResponse) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.LatestVersionResponse) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "LatestVersionResponse", + "printedName": "PlaudDeviceBasicSDK.LatestVersionResponse", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)LatestVersionResponse" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO9availableyAcA21LatestVersionResponseCcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO9availableyAcA21LatestVersionResponseCcACmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "notAvailable", + "printedName": "notAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO12notAvailableyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO12notAvailableyA2CmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "downloading", + "printedName": "downloading", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> (Swift.Float) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Float) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(progress: Swift.Float)", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO11downloadingyACSf_tcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO11downloadingyACSf_tcACmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "downloaded", + "printedName": "downloaded", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(localPath: Swift.String)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO10downloadedyACSS_tcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO10downloadedyACSS_tcACmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateStatus.Type) -> (any Swift.Error) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(any Swift.Error) -> PlaudDeviceBasicSDK.UpdateStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateStatus", + "printedName": "PlaudDeviceBasicSDK.UpdateStatus", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO6failedyACs5Error_pcACmF", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO6failedyACs5Error_pcACmF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK12UpdateStatusO", + "mangledName": "$s19PlaudDeviceBasicSDK12UpdateStatusO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "TypeDecl", + "name": "UpdateError", + "printedName": "UpdateError", + "children": [ + { + "kind": "Var", + "name": "networkError", + "printedName": "networkError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO07networkF0yACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO07networkF0yACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "invalidResponse", + "printedName": "invalidResponse", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO15invalidResponseyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO15invalidResponseyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "downloadFailed", + "printedName": "downloadFailed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO14downloadFailedyACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO14downloadFailedyACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "fileSystemError", + "printedName": "fileSystemError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> (Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO010fileSystemF0yACSScACmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO010fileSystemF0yACSScACmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "noUpdateAvailable", + "printedName": "noUpdateAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO02noE9AvailableyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO02noE9AvailableyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "userCancelled", + "printedName": "userCancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudDeviceBasicSDK.UpdateError.Type) -> PlaudDeviceBasicSDK.UpdateError", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudDeviceBasicSDK.UpdateError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UpdateError", + "printedName": "PlaudDeviceBasicSDK.UpdateError", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO13userCancelledyA2CmF", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO13userCancelledyA2CmF", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Var", + "name": "errorDescription", + "printedName": "errorDescription", + "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:19PlaudDeviceBasicSDK11UpdateErrorO16errorDescriptionSSSgvp", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO16errorDescriptionSSSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "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:19PlaudDeviceBasicSDK11UpdateErrorO16errorDescriptionSSSgvg", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO16errorDescriptionSSSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:19PlaudDeviceBasicSDK11UpdateErrorO", + "mangledName": "$s19PlaudDeviceBasicSDK11UpdateErrorO", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudEncryptHeader", + "printedName": "PlaudEncryptHeader", + "children": [ + { + "kind": "Var", + "name": "headerSize", + "printedName": "headerSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cpy)headerSize", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC10headerSizeSivpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cm)headerSize", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC10headerSizeSivgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "magicString", + "printedName": "magicString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cpy)magicString", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11magicStringSSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cm)magicString", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11magicStringSSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "magic", + "printedName": "magic", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)magic", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC5magic10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)magic", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC5magic10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "version", + "printedName": "version", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)version", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7versions6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)version", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7versions6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "headerSizeValue", + "printedName": "headerSizeValue", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)headerSizeValue", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC15headerSizeValues6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)headerSizeValue", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC15headerSizeValues6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crc", + "printedName": "crc", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)crc", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC3crcs6UInt32Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)crc", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC3crcs6UInt32Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userId", + "printedName": "userId", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)userId", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC6userId10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)userId", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC6userId10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileType", + "printedName": "fileType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)fileType", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8fileTypes6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)fileType", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8fileTypes6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "channel", + "printedName": "channel", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)channel", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7channels6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)channel", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7channels6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "encryptType", + "printedName": "encryptType", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)encryptType", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11encryptTypes6UInt16Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt16", + "printedName": "Swift.UInt16", + "usr": "s:s6UInt16V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)encryptType", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11encryptTypes6UInt16Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "duration", + "printedName": "duration", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)duration", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8durations6UInt32Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)duration", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8durations6UInt32Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)reserved", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8reserved10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)reserved", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8reserved10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "counter", + "printedName": "counter", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)counter", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7counters6UInt32Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)counter", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7counters6UInt32Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)nonce", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC5nonce10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)nonce", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC5nonce10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "segment", + "printedName": "segment", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)segment", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7segments6UInt32Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)segment", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC7segments6UInt32Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "algParams", + "printedName": "algParams", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)algParams", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC9algParams10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)algParams", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC9algParams10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keyCipher", + "printedName": "keyCipher", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)keyCipher", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC9keyCipher10Foundation4DataVvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)keyCipher", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC9keyCipher10Foundation4DataVvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)initWithData:", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC4dataACSg10Foundation4DataV_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "initWithData:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "fromFile", + "printedName": "fromFile(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(cm)fromFileWithPath:", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC8fromFile4pathACSgSS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "objc_name": "fromFileWithPath:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isEncrypted", + "printedName": "isEncrypted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)isEncrypted", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11isEncryptedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)isEncrypted", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11isEncryptedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userIdString", + "printedName": "userIdString", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)userIdString", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC12userIdStringSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)userIdString", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC12userIdStringSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(py)description", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11descriptionSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)description", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC11descriptionSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader", + "mangledName": "$s19PlaudDeviceBasicSDK0A13EncryptHeaderC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudLogConfig", + "printedName": "PlaudLogConfig", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogConfig", + "printedName": "PlaudDeviceBasicSDK.PlaudLogConfig", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogConfig", + "printedName": "PlaudDeviceBasicSDK.PlaudLogConfig", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxFileCount", + "printedName": "maxFileCount", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileCount", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC12maxFileCountSivp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileCount", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC12maxFileCountSivg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxFileAge", + "printedName": "maxFileAge", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileAge", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC10maxFileAgeSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileAge", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC10maxFileAgeSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxFileSize", + "printedName": "maxFileSize", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileSize", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC11maxFileSizes5Int64Vvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileSize", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC11maxFileSizes5Int64Vvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadInterval", + "printedName": "uploadInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)uploadInterval", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC14uploadIntervalSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)uploadInterval", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC14uploadIntervalSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadTimeout", + "printedName": "uploadTimeout", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)uploadTimeout", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC13uploadTimeoutSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)uploadTimeout", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC13uploadTimeoutSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "updateFileConfiguration", + "printedName": "updateFileConfiguration(maxFileCount:maxFileAge:maxFileSize:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "hasDefaultArg": true, + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)updateFileConfigurationWithMaxFileCount:maxFileAge:maxFileSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC23updateFileConfiguration03maxH5Count0jH3Age0jH4SizeySi_Sds5Int64VtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "updateFileConfigurationWithMaxFileCount:maxFileAge:maxFileSize:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateUploadConfiguration", + "printedName": "updateUploadConfiguration(uploadInterval:uploadTimeout:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)updateUploadConfigurationWithUploadInterval:uploadTimeout:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC25updateUploadConfiguration14uploadInterval0J7TimeoutySd_SdtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "updateUploadConfigurationWithUploadInterval:uploadTimeout:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resetToDefaults", + "printedName": "resetToDefaults()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)resetToDefaults", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC15resetToDefaultsyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentConfiguration", + "printedName": "getCurrentConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)getCurrentConfiguration", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC23getCurrentConfigurationSDySSypGyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "maxFileAgeDays", + "printedName": "maxFileAgeDays", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileAgeDays", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC14maxFileAgeDaysSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileAgeDays", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC14maxFileAgeDaysSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxFileSizeMB", + "printedName": "maxFileSizeMB", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)maxFileSizeMB", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC13maxFileSizeMBSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)maxFileSizeMB", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC13maxFileSizeMBSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadIntervalMinutes", + "printedName": "uploadIntervalMinutes", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)uploadIntervalMinutes", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC21uploadIntervalMinutesSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)uploadIntervalMinutes", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC21uploadIntervalMinutesSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "uploadTimeoutSeconds", + "printedName": "uploadTimeoutSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(py)uploadTimeoutSeconds", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC20uploadTimeoutSecondsSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)uploadTimeoutSeconds", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC20uploadTimeoutSecondsSivg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "validateConfiguration", + "printedName": "validateConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)validateConfiguration", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC21validateConfigurationSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConfigurationDescription", + "printedName": "getConfigurationDescription()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig(im)getConfigurationDescription", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC27getConfigurationDescriptionSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogConfig", + "mangledName": "$s19PlaudDeviceBasicSDK0A9LogConfigC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "PlaudLogFileRotationManager", + "printedName": "PlaudLogFileRotationManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogFileRotationManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLogFileRotationManager", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogFileRotationManager", + "printedName": "PlaudDeviceBasicSDK.PlaudLogFileRotationManager", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "forceRotateCurrentLogFile", + "printedName": "forceRotateCurrentLogFile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(im)forceRotateCurrentLogFile", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC018forceRotateCurrenteF0yyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkAndRotateIfNeeded", + "printedName": "checkAndRotateIfNeeded(filePath:additionalSize:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(im)checkAndRotateIfNeededWithFilePath:additionalSize:", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC22checkAndRotateIfNeeded8filePath14additionalSizeSbSS_s5Int64VtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "checkAndRotateIfNeededWithFilePath:additionalSize:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentLogFilePath", + "printedName": "getCurrentLogFilePath()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(im)getCurrentLogFilePath", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC010getCurrenteF4PathSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notifyUploadCompleted", + "printedName": "notifyUploadCompleted()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager(im)notifyUploadCompleted", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC21notifyUploadCompletedyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogFileRotationManager", + "mangledName": "$s19PlaudDeviceBasicSDK0A22LogFileRotationManagerC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudWiFiAgentProtocol", + "printedName": "PlaudWiFiAgentProtocol", + "children": [ + { + "kind": "Function", + "name": "wifiCommonErr", + "printedName": "wifiCommonErr(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiCommonErr::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP13wifiCommonErryySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiHandshake", + "printedName": "wifiHandshake(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiHandshake:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP13wifiHandshakeyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiConnectionStatus", + "printedName": "wifiConnectionStatus(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiConnectionStatus::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP20wifiConnectionStatusyySS_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiPower", + "printedName": "wifiPower(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiPower::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP9wifiPoweryySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileListFail", + "printedName": "wifiFileListFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiFileListFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP16wifiFileListFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileList", + "printedName": "wifiFileList(_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiFileList:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP12wifiFileListyySay0a3BleD00lJ0CGF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFile", + "printedName": "wifiSyncFile(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiSyncFile::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP12wifiSyncFileyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileData", + "printedName": "wifiSyncFileData(_:_:_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiSyncFileData::::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP16wifiSyncFileDatayySi_S2i10Foundation0L0VtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDataComplete", + "printedName": "wifiDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiDataComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP16wifiDataCompleteyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileStop", + "printedName": "wifiSyncFileStop(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiSyncFileStop:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP16wifiSyncFileStopyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileDelete", + "printedName": "wifiFileDelete(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiFileDelete::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP14wifiFileDeleteyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClientFail", + "printedName": "wifiClientFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiClientFail", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP14wifiClientFailyyF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClose", + "printedName": "wifiClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiClose:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP9wifiCloseyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRateFail", + "printedName": "wifiRateFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiRateFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP12wifiRateFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRate", + "printedName": "wifiRate(_:_:_:)", + "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": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiRate:::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP8wifiRateyySi_SiSdtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogsFail", + "printedName": "wifiLogsFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiLogsFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP12wifiLogsFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogs", + "printedName": "wifiLogs(_:)", + "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": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiLogs:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP8wifiLogsyy10Foundation4DataVSgF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiTips", + "printedName": "wifiTips(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiTips:", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP8wifiTipsyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDownloadAllProgress", + "printedName": "wifiDownloadAllProgress(_:_:_:_:)", + "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": "PlaudBleSDK.BleFile?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleFile", + "printedName": "PlaudBleSDK.BleFile", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleFile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiDownloadAllProgress::::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP23wifiDownloadAllProgressyySi_Si0a3BleD00M4FileCSgSdtF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDownloadAllCompleted", + "printedName": "wifiDownloadAllCompleted(_:_:)", + "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@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol(im)wifiDownloadAllCompleted::", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP24wifiDownloadAllCompletedyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol", + "mangledName": "$s19PlaudDeviceBasicSDK0A17WiFiAgentProtocolP", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudWiFiAgent", + "printedName": "PlaudWiFiAgent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWiFiAgent", + "printedName": "PlaudDeviceBasicSDK.PlaudWiFiAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(cpy)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC6sharedACvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWiFiAgent", + "printedName": "PlaudDeviceBasicSDK.PlaudWiFiAgent", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(cm)shared", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC6sharedACvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol)?" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)delegate", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWiFiAgentProtocol", + "printedName": "any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)delegate", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudWiFiAgentProtocol", + "printedName": "any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)PlaudWiFiAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)setDelegate:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8delegateAA0aefG8Protocol_pSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)bleDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)bleDevice", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)setBleDevice:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvs", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvM", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03bleB00a3BleD00iB0CSgvM", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDownloading", + "printedName": "isDownloading", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)isDownloading", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13isDownloadingSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isDownloading", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13isDownloadingSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentSessionId", + "printedName": "currentSessionId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)currentSessionId", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16currentSessionIdSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)currentSessionId", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16currentSessionIdSivg", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)isConnected", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC11isConnectedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isConnected", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC11isConnectedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currentDownloadSpeedKBps", + "printedName": "currentDownloadSpeedKBps", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)currentDownloadSpeedKBps", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC24currentDownloadSpeedKBpsSdvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)currentDownloadSpeedKBps", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC24currentDownloadSpeedKBpsSdvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getFormattedDownloadSpeed", + "printedName": "getFormattedDownloadSpeed()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getFormattedDownloadSpeed", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC25getFormattedDownloadSpeedSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isDownloadingAll", + "printedName": "isDownloadingAll", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(py)isDownloadingAll", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16isDownloadingAllSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isDownloadingAll", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16isDownloadingAllSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "openLog", + "printedName": "openLog(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)openLog::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC7openLogyySb_ySScSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listenPort", + "printedName": "listenPort(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)listenPort::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC10listenPortyySS_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectWifi", + "printedName": "connectWifi(_:_:_:)", + "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": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)connectWifi:::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC11connectWifiyySS_SSSitF", + "moduleName": "PlaudDeviceBasicSDK", + "intro_iOS": "11.0", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)disconnect", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC10disconnectyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConnectedTo", + "printedName": "isConnectedTo(_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isConnectedTo:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13isConnectedToySbSSF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConnectionStatusDescription", + "printedName": "getConnectionStatusDescription()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getConnectionStatusDescription", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC30getConnectionStatusDescriptionSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentWiFiName", + "printedName": "getCurrentWiFiName()", + "children": [ + { + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getCurrentWiFiName", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC010getCurrenteF4NameSSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFileList", + "printedName": "getFileList(_:_:_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getFileList:::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC11getFileListyySi_SiSbtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "syncFile", + "printedName": "syncFile(_:_:_:_:)", + "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", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)syncFile::::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8syncFileyySi_S3itF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSyncFile", + "printedName": "stopSyncFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)stopSyncFile::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12stopSyncFileyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteFile", + "printedName": "deleteFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)deleteFile::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC10deleteFileyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exportAudioViaWiFi", + "printedName": "exportAudioViaWiFi(sessionId:outputDir:format:channels:callback:)", + "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": "AudioExportFormat", + "printedName": "PlaudDeviceBasicSDK.AudioExportFormat", + "usr": "c:@M@PlaudDeviceBasicSDK@E@AudioExportFormat" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "AudioExportCallback", + "printedName": "any PlaudDeviceBasicSDK.AudioExportCallback", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(pl)AudioExportCallback" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A9WiFiAgentC014exportAudioViaeF09sessionId9outputDir6format8channels8callbackySi_SSAA0I12ExportFormatOSiAA0iR8Callback_ptF", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC014exportAudioViaeF09sessionId9outputDir6format8channels8callbackySi_SSAA0I12ExportFormatOSiAA0iR8Callback_ptF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startDownloadAll", + "printedName": "startDownloadAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)startDownloadAll", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16startDownloadAllyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopDownloadAll", + "printedName": "stopDownloadAll()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)stopDownloadAll", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC15stopDownloadAllyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startRateTest", + "printedName": "startRateTest(_:_:)", + "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@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)startRateTest::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13startRateTestyySb_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDeviceLogs", + "printedName": "getDeviceLogs(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)getDeviceLogs:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC03getB4LogsyySbF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isWebSocketConnected", + "printedName": "isWebSocketConnected()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)isWebSocketConnected", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC20isWebSocketConnectedSbyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiCommonErr", + "printedName": "wifiCommonErr(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiCommonErr::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13wifiCommonErryySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiCommonErr::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiHandshake", + "printedName": "wifiHandshake(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiHandshake:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13wifiHandshakeyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiHandshake:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiConnectionStatus", + "printedName": "wifiConnectionStatus(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK0A9WiFiAgentC20wifiConnectionStatusyySS_SbtF", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC20wifiConnectionStatusyySS_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiPower", + "printedName": "wifiPower(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiPower::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC9wifiPoweryySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiPower::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileListFail", + "printedName": "wifiFileListFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiFileListFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16wifiFileListFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiFileListFail:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileList", + "printedName": "wifiFileList(_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiFileList:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12wifiFileListyySay0a3BleD00kI0CGF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiFileList:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFile", + "printedName": "wifiSyncFile(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiSyncFile::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12wifiSyncFileyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiSyncFile::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileData", + "printedName": "wifiSyncFileData(_:_:_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiSyncFileData::::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16wifiSyncFileDatayySi_S2i10Foundation0K0VtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiSyncFileData::::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDataComplete", + "printedName": "wifiDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiDataComplete", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16wifiDataCompleteyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiDataComplete", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileStop", + "printedName": "wifiSyncFileStop(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiSyncFileStop:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC16wifiSyncFileStopyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiSyncFileStop:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileDelete", + "printedName": "wifiFileDelete(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiFileDelete::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC14wifiFileDeleteyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiFileDelete::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClientFail", + "printedName": "wifiClientFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiClientFail", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC14wifiClientFailyyF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiClientFail", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClose", + "printedName": "wifiClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiClose:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC9wifiCloseyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiClose:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRateFail", + "printedName": "wifiRateFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiRateFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12wifiRateFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiRateFail:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRate", + "printedName": "wifiRate(_:_:_:)", + "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": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiRate:::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8wifiRateyySi_SiSdtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiRate:::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogsFail", + "printedName": "wifiLogsFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiLogsFail:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC12wifiLogsFailyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiLogsFail:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogs", + "printedName": "wifiLogs(_:)", + "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": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiLogs:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8wifiLogsyy10Foundation4DataVSgF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiLogs:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiTips", + "printedName": "wifiTips(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiTips:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC8wifiTipsyySiF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiTips:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "penRequestOTAData", + "printedName": "penRequestOTAData(start:end:payloadSize:uid:sendRatePPS:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)penRequestOTADataWithStart:end:payloadSize:uid:sendRatePPS:", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC17penRequestOTAData5start3end11payloadSize3uid11sendRatePPSySi_S4itF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "penRequestOTADataWithStart:end:payloadSize:uid:sendRatePPS:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiOTAStatus", + "printedName": "wifiOTAStatus(_:_:)", + "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:@CM@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent(im)wifiOTAStatus::", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC13wifiOTAStatusyySi_SitF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "wifiOTAStatus::", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudWiFiAgent", + "mangledName": "$s19PlaudDeviceBasicSDK0A9WiFiAgentC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "WiFiAgentProtocol", + "printedName": "WiFiAgentProtocol", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "RSASecretConfig", + "printedName": "RSASecretConfig", + "children": [ + { + "kind": "Var", + "name": "defaultPublicKey", + "printedName": "defaultPublicKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC16defaultPublicKeySSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC16defaultPublicKeySSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC16defaultPublicKeySSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC16defaultPublicKeySSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultPrivateKey", + "printedName": "defaultPrivateKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC17defaultPrivateKeySSvpZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC17defaultPrivateKeySSvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC17defaultPrivateKeySSvgZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC17defaultPrivateKeySSvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setKeys", + "printedName": "setKeys(publicKey:privateKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC7setKeys9publicKey07privateJ0ySS_SStFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC7setKeys9publicKey07privateJ0ySS_SStFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getSnSignature", + "printedName": "getSnSignature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC14getSnSignature3forSSSgSS_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC14getSnSignature3forSSSgSS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSnSignature", + "printedName": "setSnSignature(_:for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC14setSnSignature_3forySS_SStFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC14setSnSignature_3forySS_SStFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSnSignature", + "printedName": "clearSnSignature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC16clearSnSignature3forySS_tFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC16clearSnSignature3forySS_tFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAllSnSignatures", + "printedName": "clearAllSnSignatures()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC20clearAllSnSignaturesyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC20clearAllSnSignaturesyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearKeys", + "printedName": "clearKeys()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC9clearKeysyyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC9clearKeysyyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentPublicKey", + "printedName": "getCurrentPublicKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC19getCurrentPublicKeySSyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC19getCurrentPublicKeySSyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentPrivateKey", + "printedName": "getCurrentPrivateKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC20getCurrentPrivateKeySSyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC20getCurrentPrivateKeySSyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKey", + "printedName": "getPublicKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "PublicKey", + "printedName": "PlaudBleSDK.PublicKey", + "usr": "s:11PlaudBleSDK9PublicKeyC" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC12getPublicKey0a3BleD00hI0CyKFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC12getPublicKey0a3BleD00hI0CyKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPrivateKey", + "printedName": "getPrivateKey()", + "children": [ + { + "kind": "TypeNominal", + "name": "PrivateKey", + "printedName": "PlaudBleSDK.PrivateKey", + "usr": "s:11PlaudBleSDK10PrivateKeyC" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC13getPrivateKey0a3BleD00hI0CyKFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC13getPrivateKey0a3BleD00hI0CyKFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hasCustomKeys", + "printedName": "hasCustomKeys()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC13hasCustomKeysSbyFZ", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC13hasCustomKeysSbyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:19PlaudDeviceBasicSDK15RSASecretConfigC", + "mangledName": "$s19PlaudDeviceBasicSDK15RSASecretConfigC", + "moduleName": "PlaudDeviceBasicSDK", + "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": "PlaudBleSDK", + "printedName": "PlaudBleSDK", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Exported", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "PlaudDeviceBasicSDK" + }, + { + "kind": "TypeDecl", + "name": "PlaudLogEncryption", + "printedName": "PlaudLogEncryption", + "children": [ + { + "kind": "Function", + "name": "exportEncryptedLogs", + "printedName": "exportEncryptedLogs()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSURL?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSURL", + "printedName": "Foundation.NSURL", + "usr": "c:objc(cs)NSURL" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogEncryption(cm)exportEncryptedLogs", + "mangledName": "$s19PlaudDeviceBasicSDK0A13LogEncryptionC19exportEncryptedLogsSo5NSURLCSgyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudLogEncryption", + "printedName": "PlaudDeviceBasicSDK.PlaudLogEncryption", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogEncryption" + } + ], + "declKind": "Constructor", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogEncryption(im)init", + "mangledName": "$s19PlaudDeviceBasicSDK0A13LogEncryptionCACycfc", + "moduleName": "PlaudDeviceBasicSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudLogEncryption", + "mangledName": "$s19PlaudDeviceBasicSDK0A13LogEncryptionC", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "PlaudLogEncryption", + "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": "Array", + "printedName": "Array", + "children": [ + { + "kind": "Function", + "name": "appendDistinct", + "printedName": "appendDistinct(contentsOf:where:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(τ_0_0, τ_0_0) -> Swift.Bool", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(τ_0_0, τ_0_0)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:Sa19PlaudDeviceBasicSDKE14appendDistinct10contentsOf5whereyqd___Sbx_xtct7ElementQyd__RszSTRd__lF", + "mangledName": "$sSa19PlaudDeviceBasicSDKE14appendDistinct10contentsOf5whereyqd___Sbx_xtct7ElementQyd__RszSTRd__lF", + "moduleName": "PlaudDeviceBasicSDK", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 == τ_1_0.Element, τ_1_0 : Swift.Sequence>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + } + ], + "declKind": "Struct", + "usr": "s:Sa", + "mangledName": "$sSa", + "moduleName": "Swift", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_DestructorSafeContainer", + "printedName": "_DestructorSafeContainer", + "usr": "s:s24_DestructorSafeContainerP", + "mangledName": "$ss24_DestructorSafeContainerP" + }, + { + "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": "_ArrayProtocol", + "printedName": "_ArrayProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "_Buffer", + "printedName": "_Buffer", + "children": [ + { + "kind": "TypeNominal", + "name": "_ArrayBuffer", + "printedName": "Swift._ArrayBuffer<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s12_ArrayBufferV" + } + ] + } + ], + "usr": "s:s14_ArrayProtocolP", + "mangledName": "$ss14_ArrayProtocolP" + }, + { + "kind": "Conformance", + "name": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "IndexingIterator", + "printedName": "Swift.IndexingIterator<[τ_0_0]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[τ_0_0]", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s16IndexingIteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "ExpressibleByArrayLiteral", + "printedName": "ExpressibleByArrayLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ArrayLiteralElement", + "printedName": "ArrayLiteralElement", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "usr": "s:s25ExpressibleByArrayLiteralP", + "mangledName": "$ss25ExpressibleByArrayLiteralP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "ArraySlice", + "printedName": "Swift.ArraySlice<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:s10ArraySliceV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSArray", + "printedName": "Foundation.NSArray", + "usr": "c:objc(cs)NSArray" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "EncodableWithConfiguration", + "printedName": "EncodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "EncodingConfiguration", + "printedName": "EncodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.EncodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26EncodableWithConfigurationP", + "mangledName": "$s10Foundation26EncodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DecodableWithConfiguration", + "printedName": "DecodableWithConfiguration", + "children": [ + { + "kind": "TypeWitness", + "name": "DecodingConfiguration", + "printedName": "DecodingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.DecodingConfiguration" + } + ] + } + ], + "usr": "s:10Foundation26DecodableWithConfigurationP", + "mangledName": "$s10Foundation26DecodableWithConfigurationP" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne<[Swift.UInt8]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.UInt8]", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIColor", + "printedName": "UIColor", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(hex:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ], + "declKind": "Constructor", + "usr": "s:So7UIColorC19PlaudDeviceBasicSDKE3hexABs6UInt32V_tcfc", + "mangledName": "$sSo7UIColorC19PlaudDeviceBasicSDKE3hexABs6UInt32V_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Convenience", + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIColor", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIColor", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "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": "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": "_ExpressibleByColorLiteral", + "printedName": "_ExpressibleByColorLiteral", + "usr": "s:s26_ExpressibleByColorLiteralP", + "mangledName": "$ss26_ExpressibleByColorLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Date", + "printedName": "Date", + "children": [ + { + "kind": "Var", + "name": "minSec", + "printedName": "minSec", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV19PlaudDeviceBasicSDKE6minSecSivp", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE6minSecSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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:10Foundation4DateV19PlaudDeviceBasicSDKE6minSecSivg", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE6minSecSivg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxSec", + "printedName": "maxSec", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV19PlaudDeviceBasicSDKE6maxSecSivp", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE6maxSecSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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:10Foundation4DateV19PlaudDeviceBasicSDKE6maxSecSivg", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE6maxSecSivg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "formatyyyyMMdd", + "printedName": "formatyyyyMMdd", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV19PlaudDeviceBasicSDKE14formatyyyyMMddSSvp", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE14formatyyyyMMddSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:10Foundation4DateV19PlaudDeviceBasicSDKE14formatyyyyMMddSSvg", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE14formatyyyyMMddSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "yyyyMMddValue", + "printedName": "yyyyMMddValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:10Foundation4DateV19PlaudDeviceBasicSDKE13yyyyMMddValueSivp", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE13yyyyMMddValueSivp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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:10Foundation4DateV19PlaudDeviceBasicSDKE13yyyyMMddValueSivg", + "mangledName": "$s10Foundation4DateV19PlaudDeviceBasicSDKE13yyyyMMddValueSivg", + "moduleName": "PlaudDeviceBasicSDK", + "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": "UIDevice", + "printedName": "UIDevice", + "children": [ + { + "kind": "Var", + "name": "type", + "printedName": "type", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ], + "declKind": "Var", + "usr": "s:So8UIDeviceC19PlaudDeviceBasicSDKE4typeAC5ModelOvp", + "mangledName": "$sSo8UIDeviceC19PlaudDeviceBasicSDKE4typeAC5ModelOvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Model", + "printedName": "PlaudDeviceBasicSDK.Model", + "usr": "s:19PlaudDeviceBasicSDK5ModelO" + } + ], + "declKind": "Accessor", + "usr": "s:So8UIDeviceC19PlaudDeviceBasicSDKE4typeAC5ModelOvg", + "mangledName": "$sSo8UIDeviceC19PlaudDeviceBasicSDKE4typeAC5ModelOvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getOSInfo", + "printedName": "getOSInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So8UIDeviceC19PlaudDeviceBasicSDKE9getOSInfoSSyFZ", + "mangledName": "$sSo8UIDeviceC19PlaudDeviceBasicSDKE9getOSInfoSSyFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "Preconcurrency", + "Custom", + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIDevice", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIDevice", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "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" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UINavigationController", + "printedName": "UINavigationController", + "children": [ + { + "kind": "Function", + "name": "pushViewController", + "printedName": "pushViewController(_:animated:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:So22UINavigationControllerC19PlaudDeviceBasicSDKE08pushViewB0_8animated10completionySo06UIViewB0C_SbyycSgtF", + "mangledName": "$sSo22UINavigationControllerC19PlaudDeviceBasicSDKE08pushViewB0_8animated10completionySo06UIViewB0C_SbyycSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UINavigationController", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UINavigationController", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIViewController", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIViewController", + "UIKit.UIResponder", + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIViewController", + "printedName": "UIViewController", + "children": [ + { + "kind": "Var", + "name": "isCurrentVisible", + "printedName": "isCurrentVisible", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE16isCurrentVisibleSbvp", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE16isCurrentVisibleSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE16isCurrentVisibleSbvg", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE16isCurrentVisibleSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "currentIS", + "printedName": "currentIS(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "any AnyObject.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ] + } + ], + "declKind": "Func", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE9currentISySbyXlXpF", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE9currentISySbyXlXpF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "currentVCClass", + "printedName": "currentVCClass", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE14currentVCClassABSgvp", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE14currentVCClassABSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE14currentVCClassABSgvg", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE14currentVCClassABSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "presentBottom", + "printedName": "presentBottom(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PresentBottomVC", + "printedName": "PlaudDeviceBasicSDK.PresentBottomVC", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PresentBottomVC" + } + ], + "declKind": "Func", + "usr": "s:So16UIViewControllerC19PlaudDeviceBasicSDKE13presentBottomyyAC07PresentH2VCCF", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE13presentBottomyyAC07PresentH2VCCF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentationController", + "printedName": "presentationController(forPresented:presenting:source:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIPresentationController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIPresentationController", + "printedName": "UIKit.UIPresentationController", + "usr": "c:objc(cs)UIPresentationController" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@@objc(cs)UIViewController(im)presentationControllerForPresentedViewController:presentingViewController:sourceViewController:", + "mangledName": "$sSo16UIViewControllerC19PlaudDeviceBasicSDKE012presentationB012forPresented10presenting6sourceSo014UIPresentationB0CSgAB_ABSgABtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "presentationControllerForPresentedViewController:presentingViewController:sourceViewController:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIViewController", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIViewController", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIResponder", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIResponder", + "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": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "children": [ + { + "kind": "Var", + "name": "local", + "printedName": "local", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS19PlaudDeviceBasicSDKE5localSSvp", + "mangledName": "$sSS19PlaudDeviceBasicSDKE5localSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "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:SS19PlaudDeviceBasicSDKE5localSSvg", + "mangledName": "$sSS19PlaudDeviceBasicSDKE5localSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "image", + "printedName": "image", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:SS19PlaudDeviceBasicSDKE5imageSo7UIImageCSgvp", + "mangledName": "$sSS19PlaudDeviceBasicSDKE5imageSo7UIImageCSgvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:SS19PlaudDeviceBasicSDKE5imageSo7UIImageCSgvg", + "mangledName": "$sSS19PlaudDeviceBasicSDKE5imageSo7UIImageCSgvg", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "simpleEncrypt", + "printedName": "simpleEncrypt()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:SS19PlaudDeviceBasicSDKE13simpleEncryptSSyF", + "mangledName": "$sSS19PlaudDeviceBasicSDKE13simpleEncryptSSyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "plaudLocalized", + "printedName": "plaudLocalized", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:SS19PlaudDeviceBasicSDKE14plaudLocalizedSSvp", + "mangledName": "$sSS19PlaudDeviceBasicSDKE14plaudLocalizedSSvp", + "moduleName": "PlaudDeviceBasicSDK", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:SS19PlaudDeviceBasicSDKE14plaudLocalizedSSvg", + "mangledName": "$sSS19PlaudDeviceBasicSDKE14plaudLocalizedSSvg", + "moduleName": "PlaudDeviceBasicSDK", + "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": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Character", + "printedName": "Character", + "children": [ + { + "kind": "Function", + "name": "intValue", + "printedName": "intValue()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:SJ19PlaudDeviceBasicSDKE8intValueSiyF", + "mangledName": "$sSJ19PlaudDeviceBasicSDKE8intValueSiyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:SJ", + "mangledName": "$sSJ", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + } + ], + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIView", + "printedName": "UIView", + "declKind": "Class", + "usr": "c:objc(cs)UIView", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIView", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIResponder", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIResponder", + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" + }, + { + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIBarButtonItem", + "printedName": "UIBarButtonItem", + "declKind": "Class", + "usr": "c:objc(cs)UIBarButtonItem", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIBarButtonItem", + "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIBarItem", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIBarItem", + "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": "CABasicAnimation", + "printedName": "CABasicAnimation", + "declKind": "Class", + "usr": "c:objc(cs)CABasicAnimation", + "moduleName": "QuartzCore", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "CABasicAnimation", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)CAPropertyAnimation", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "QuartzCore.CAPropertyAnimation", + "QuartzCore.CAAnimation", + "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": "Int", + "printedName": "Int", + "children": [ + { + "kind": "Function", + "name": "loopRun", + "printedName": "loopRun(task:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:Si19PlaudDeviceBasicSDKE7loopRun4taskyyyXE_tF", + "mangledName": "$sSi19PlaudDeviceBasicSDKE7loopRun4taskyyyXE_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:Si", + "mangledName": "$sSi", + "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.Int.Words", + "usr": "s:Si5WordsV" + } + ] + } + ], + "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": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "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": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "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": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "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": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "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": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Int.SIMD2Storage", + "usr": "s:Si12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Int.SIMD4Storage", + "usr": "s:Si12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Int.SIMD8Storage", + "usr": "s:Si12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Int.SIMD16Storage", + "usr": "s:Si13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Int.SIMD32Storage", + "usr": "s:Si13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Int.SIMD64Storage", + "usr": "s:Si13SIMD64StorageV" + } + ] + } + ], + "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": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DispatchTime", + "printedName": "DispatchTime", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(integerLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchTime", + "printedName": "Dispatch.DispatchTime", + "usr": "s:8Dispatch0A4TimeV" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8Dispatch0A4TimeV19PlaudDeviceBasicSDKE14integerLiteralACSi_tcfc", + "mangledName": "$s8Dispatch0A4TimeV19PlaudDeviceBasicSDKE14integerLiteralACSi_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(floatLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchTime", + "printedName": "Dispatch.DispatchTime", + "usr": "s:8Dispatch0A4TimeV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Constructor", + "usr": "s:8Dispatch0A4TimeV19PlaudDeviceBasicSDKE12floatLiteralACSd_tcfc", + "mangledName": "$s8Dispatch0A4TimeV19PlaudDeviceBasicSDKE12floatLiteralACSd_tcfc", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:8Dispatch0A4TimeV", + "mangledName": "$s8Dispatch0A4TimeV", + "moduleName": "Dispatch", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CGFloat", + "printedName": "CGFloat", + "children": [ + { + "kind": "Function", + "name": "random", + "printedName": "random(lower:upper:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "hasDefaultArg": true, + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "hasDefaultArg": true, + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "s:14CoreFoundation7CGFloatV19PlaudDeviceBasicSDKE6random5lower5upperA2C_ACtFZ", + "mangledName": "$s12CoreGraphics7CGFloatV19PlaudDeviceBasicSDKE6random5lower5upperA2C_ACtFZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:14CoreFoundation7CGFloatV", + "mangledName": "$s12CoreGraphics7CGFloatV", + "moduleName": "CoreFoundation", + "intro_Macosx": "10.0", + "intro_iOS": "2.0", + "intro_tvOS": "9.0", + "intro_watchOS": "1.0", + "declAttributes": [ + "Frozen", + "OriginallyDefinedIn", + "OriginallyDefinedIn", + "OriginallyDefinedIn", + "OriginallyDefinedIn", + "OriginallyDefinedIn", + "Available", + "Available", + "Available", + "Available", + "Available" + ], + "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": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "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": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" + }, + { + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "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": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FileManager", + "printedName": "FileManager", + "children": [ + { + "kind": "Function", + "name": "findFiles", + "printedName": "findFiles(path:filterTypes:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:So13NSFileManagerC19PlaudDeviceBasicSDKE9findFiles4path11filterTypesSaySSGSS_AGtF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE9findFiles4path11filterTypesSaySSGSS_AGtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "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:So13NSFileManagerC19PlaudDeviceBasicSDKE8fileSize4pathSiSS_tF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE8fileSize4pathSiSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "folderSize", + "printedName": "folderSize(dir:)", + "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:So13NSFileManagerC19PlaudDeviceBasicSDKE10folderSize3dirSiSS_tF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE10folderSize3dirSiSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearFolder", + "printedName": "clearFolder(dir:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So13NSFileManagerC19PlaudDeviceBasicSDKE11clearFolder3dirySS_tF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE11clearFolder3dirySS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createIfNotExist", + "printedName": "createIfNotExist(atPath:)", + "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:So13NSFileManagerC19PlaudDeviceBasicSDKE16createIfNotExist6atPathSbSS_tF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE16createIfNotExist6atPathSbSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copyFile", + "printedName": "copyFile(filePath:withName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So13NSFileManagerC19PlaudDeviceBasicSDKE8copyFile8filePath8withNameSSSgSS_SStF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE8copyFile8filePath8withNameSSSgSS_SStF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "copy", + "printedName": "copy(from:to:callback:)", + "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": "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": "s:So13NSFileManagerC19PlaudDeviceBasicSDKE4copy4from2to8callbackySS_SSySbctF", + "mangledName": "$sSo13NSFileManagerC19PlaudDeviceBasicSDKE4copy4from2to8callbackySS_SSySbctF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "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" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "plaudLogConfigurationChanged", + "printedName": "plaudLogConfigurationChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Var", + "usr": "s:So18NSNotificationNamea19PlaudDeviceBasicSDKE28plaudLogConfigurationChangedABvpZ", + "mangledName": "$sSo18NSNotificationNamea19PlaudDeviceBasicSDKE28plaudLogConfigurationChangedABvpZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea19PlaudDeviceBasicSDKE28plaudLogConfigurationChangedABvgZ", + "mangledName": "$sSo18NSNotificationNamea19PlaudDeviceBasicSDKE28plaudLogConfigurationChangedABvgZ", + "moduleName": "PlaudDeviceBasicSDK", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", + "declAttributes": [ + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" + ], + "isFromExtension": true, + "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": "_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": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AVAudioPlayer", + "printedName": "AVAudioPlayer", + "children": [ + { + "kind": "Function", + "name": "play", + "printedName": "play(numberOfLoops:completion:)", + "children": [ + { + "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.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:So13AVAudioPlayerC19PlaudDeviceBasicSDKE4play13numberOfLoops10completionSbSi_ySbcSgtF", + "mangledName": "$sSo13AVAudioPlayerC19PlaudDeviceBasicSDKE4play13numberOfLoops10completionSbSi_ySbcSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resume", + "printedName": "resume()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:So13AVAudioPlayerC19PlaudDeviceBasicSDKE6resumeyyF", + "mangledName": "$sSo13AVAudioPlayerC19PlaudDeviceBasicSDKE6resumeyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerDidFinishPlaying", + "printedName": "audioPlayerDidFinishPlaying(_:successfully:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@@objc(cs)AVAudioPlayer(im)audioPlayerDidFinishPlaying:successfully:", + "mangledName": "$sSo13AVAudioPlayerC19PlaudDeviceBasicSDKE05audioB16DidFinishPlaying_12successfullyyAB_SbtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerDidFinishPlaying:successfully:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "audioPlayerDecodeErrorDidOccur", + "printedName": "audioPlayerDecodeErrorDidOccur(_:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AVAudioPlayer", + "printedName": "AVFAudio.AVAudioPlayer", + "usr": "c:objc(cs)AVAudioPlayer" + }, + { + "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@PlaudDeviceBasicSDK@@objc(cs)AVAudioPlayer(im)audioPlayerDecodeErrorDidOccur:error:", + "mangledName": "$sSo13AVAudioPlayerC19PlaudDeviceBasicSDKE05audioB19DecodeErrorDidOccur_5erroryAB_s0I0_pSgtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "audioPlayerDecodeErrorDidOccur:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)AVAudioPlayer", + "moduleName": "AVFAudio", + "isOpen": true, + "intro_iOS": "2.2", + "objc_name": "AVAudioPlayer", + "declAttributes": [ + "Available", + "ObjC", + "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" + }, + { + "kind": "Conformance", + "name": "Player", + "printedName": "Player", + "usr": "s:19PlaudDeviceBasicSDK6PlayerP", + "mangledName": "$s19PlaudDeviceBasicSDK6PlayerP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AVAudioSession", + "printedName": "AVAudioSession", + "declKind": "Class", + "usr": "c:objc(cs)AVAudioSession", + "moduleName": "AVFAudio", + "isOpen": true, + "intro_iOS": "3.0", + "objc_name": "AVAudioSession", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "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": "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": "Session", + "printedName": "Session", + "usr": "s:19PlaudDeviceBasicSDK7SessionP", + "mangledName": "$s19PlaudDeviceBasicSDK7SessionP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BleAgent", + "printedName": "BleAgent", + "children": [ + { + "kind": "Var", + "name": "isSecureChannelEstablished", + "printedName": "isSecureChannelEstablished", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(py)isSecureChannelEstablished", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E26isSecureChannelEstablishedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)isSecureChannelEstablished", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E26isSecureChannelEstablishedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getEncryptionKey", + "printedName": "getEncryptionKey()", + "children": [ + { + "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:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionKey", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E16getEncryptionKeySSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEncryptionNonce", + "printedName": "getEncryptionNonce()", + "children": [ + { + "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:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionNonce", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E18getEncryptionNonceSSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEncryptionAD", + "printedName": "getEncryptionAD()", + "children": [ + { + "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:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionAD", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E15getEncryptionADSSSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEncryptionParameters", + "printedName": "getEncryptionParameters()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionParameters", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E23getEncryptionParametersSDyS2SGSgyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptFileData", + "printedName": "decryptFileData(_: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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)decryptFileData:key:nonce:ad:error:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E15decryptFileData_3key5nonce2ad10Foundation0I0VAK_SSSgA2LtKF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptFile", + "printedName": "decryptFile(inputPath:outputPath:key:nonce:ad:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)decryptFileWithInputPath:outputPath:key:nonce:ad:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E11decryptFile9inputPath06outputJ03key5nonce2adSbSS_S2SSgA2KtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "decryptFileWithInputPath:outputPath:key:nonce:ad:", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptAndPrepareOggFile", + "printedName": "decryptAndPrepareOggFile(encryptedFilePath:channel:key:nonce:ad:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)decryptAndPrepareOggFileWithEncryptedFilePath:channel:key:nonce:ad:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E24decryptAndPrepareOggFile09encryptedK4Path7channel3key5nonce2adSSSgSS_s5Int32VA3KtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "decryptAndPrepareOggFileWithEncryptedFilePath:channel:key:nonce:ad:", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "playDecryptedOggFile", + "printedName": "playDecryptedOggFile(encryptedFilePath:channel:delegate:key:nonce:ad:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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": "Optional", + "printedName": "(any PenBleSDK.JXOggPlayerDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "JXOggPlayerDelegate", + "printedName": "any PenBleSDK.JXOggPlayerDelegate", + "usr": "c:objc(pl)JXOggPlayerDelegate" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)playDecryptedOggFileWithEncryptedFilePath:channel:delegate:key:nonce:ad:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E20playDecryptedOggFile09encryptedJ4Path7channel8delegate3key5nonce2adSbSS_s5Int32VSo19JXOggPlayerDelegate_pSgSSSgA2PtF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "playDecryptedOggFileWithEncryptedFilePath:channel:delegate:key:nonce:ad:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopOggPlayback", + "printedName": "stopOggPlayback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)stopOggPlayback", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E15stopOggPlaybackyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "pauseOggPlayback", + "printedName": "pauseOggPlayback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)pauseOggPlayback", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E16pauseOggPlaybackyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resumeOggPlayback", + "printedName": "resumeOggPlayback()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)resumeOggPlayback", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E17resumeOggPlaybackyyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getOggPlayer", + "printedName": "getOggPlayer()", + "children": [ + { + "kind": "TypeNominal", + "name": "JXOggPlayer", + "printedName": "PenBleSDK.JXOggPlayer", + "usr": "c:objc(cs)JXOggPlayer" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getOggPlayer", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E12getOggPlayerSo05JXOggI0CyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decryptE2EEAudioFile", + "printedName": "decryptE2EEAudioFile(inputPath:outputPath:privateKeyPem:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)decryptE2EEAudioFileWithInputPath:outputPath:privateKeyPem:error:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E20decryptE2EEAudioFile9inputPath06outputL013privateKeyPemS2S_SSSgSStKF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "decryptE2EEAudioFileWithInputPath:outputPath:privateKeyPem:error:", + "declAttributes": [ + "Dynamic", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isE2EEEncryptedFile", + "printedName": "isE2EEEncryptedFile(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:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)isE2EEEncryptedFileWithPath:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E19isE2EEEncryptedFile4pathSbSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "isE2EEEncryptedFileWithPath:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getE2EEFileHeader", + "printedName": "getE2EEFileHeader(path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "PlaudEncryptHeader", + "printedName": "PlaudDeviceBasicSDK.PlaudEncryptHeader", + "usr": "c:@M@PlaudDeviceBasicSDK@objc(cs)PlaudEncryptHeader" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getE2EEFileHeaderWithPath:", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E17getE2EEFileHeader4pathAD0a7EncryptJ0CSgSS_tF", + "moduleName": "PlaudDeviceBasicSDK", + "objc_name": "getE2EEFileHeaderWithPath:", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "isEncryptionSupported", + "printedName": "isEncryptionSupported", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(py)isEncryptionSupported", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E21isEncryptionSupportedSbvp", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)isEncryptionSupported", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E21isEncryptionSupportedSbvg", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getEncryptionProtocolInfo", + "printedName": "getEncryptionProtocolInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudDeviceBasicSDK@PlaudBleSDK@objc(cs)BleAgent(im)getEncryptionProtocolInfo", + "mangledName": "$s11PlaudBleSDK0B5AgentC0a11DeviceBasicC0E25getEncryptionProtocolInfoSDySSypGyF", + "moduleName": "PlaudDeviceBasicSDK", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudBleSDK@objc(cs)BleAgent", + "mangledName": "$s11PlaudBleSDK0B5AgentC", + "moduleName": "PlaudBleSDK", + "declAttributes": [ + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "BooleanLiteral", + "offset": 549, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "BooleanLiteral", + "offset": 691, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "BooleanLiteral", + "offset": 881, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "StringLiteral", + "offset": 1280, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiAddingPage.swift", + "kind": "BooleanLiteral", + "offset": 1324, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "IntegerLiteral", + "offset": 365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 941, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "Array", + "offset": 10201, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "StringLiteral", + "offset": 10603, + "length": 19, + "value": "\"wifi_network_list\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "IntegerLiteral", + "offset": 10685, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 10728, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 10741, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 10753, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 10766, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 10829, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 10860, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "StringLiteral", + "offset": 11057, + "length": 14, + "value": "\"测试信号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 11129, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 11141, + "length": 4, + "value": "0.48" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 11153, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "FloatLiteral", + "offset": 11165, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "IntegerLiteral", + "offset": 11245, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 11325, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 11357, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/basicUI\/PlaudWifiSettingPage.swift", + "kind": "BooleanLiteral", + "offset": 11458, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHArray+EX.swift", + "kind": "IntegerLiteral", + "offset": 1447, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 209, + "length": 8, + "value": "0xFD443A" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 8, + "value": "0xA3A3A3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 304, + "length": 8, + "value": "0xA4A4A4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 8, + "value": "0xAAAAAA" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 8, + "value": "0xF2F4F7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 446, + "length": 8, + "value": "0xF2565A" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 493, + "length": 8, + "value": "0xF4F4F4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 540, + "length": 8, + "value": "0xF5F5F5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 587, + "length": 8, + "value": "0xF72222" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 634, + "length": 8, + "value": "0xF8F8F8" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 681, + "length": 8, + "value": "0xF9FAFB" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 728, + "length": 8, + "value": "0xFD573B" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 775, + "length": 8, + "value": "0xFFF7F7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 823, + "length": 8, + "value": "0xE3E3E3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 870, + "length": 8, + "value": "0xE4E7EC" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 921, + "length": 8, + "value": "0x101828" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 971, + "length": 8, + "value": "0x1F1F1F" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1022, + "length": 8, + "value": "0x333334" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1072, + "length": 8, + "value": "0x353535" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1122, + "length": 8, + "value": "0x3A59FD" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1172, + "length": 8, + "value": "0x475467" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1223, + "length": 8, + "value": "0x667085" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 8, + "value": "0x686869" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1324, + "length": 8, + "value": "0x979797" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 8, + "value": "0x98A2B3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1424, + "length": 8, + "value": "0x999999" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1482, + "length": 8, + "value": "0xFCFCFC" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1539, + "length": 8, + "value": "0xC4D5FF" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1596, + "length": 8, + "value": "0xFDFDFD" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1648, + "length": 8, + "value": "0x858597" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1699, + "length": 8, + "value": "0x1A051D" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1750, + "length": 8, + "value": "0x3F3356" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1801, + "length": 8, + "value": "0xD0C9D6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1852, + "length": 8, + "value": "0xECEBED" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1903, + "length": 8, + "value": "0xE02020" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 1954, + "length": 8, + "value": "0xB2A9BC" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 2005, + "length": 8, + "value": "0xECE9F1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "IntegerLiteral", + "offset": 2362, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHColor.swift", + "kind": "FloatLiteral", + "offset": 2927, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDate+Extension.swift", + "kind": "IntegerLiteral", + "offset": 2407, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDate+Extension.swift", + "kind": "IntegerLiteral", + "offset": 5690, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2057, + "length": 19, + "value": "\"simulator\/sandbox\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2113, + "length": 8, + "value": "\"iPod 1\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2140, + "length": 8, + "value": "\"iPod 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2167, + "length": 8, + "value": "\"iPod 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2194, + "length": 8, + "value": "\"iPod 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2221, + "length": 8, + "value": "\"iPod 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 8, + "value": "\"iPod 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 8, + "value": "\"iPod 7\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2320, + "length": 8, + "value": "\"iPad 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2347, + "length": 8, + "value": "\"iPad 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2374, + "length": 8, + "value": "\"iPad 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2403, + "length": 11, + "value": "\"iPad Air \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2436, + "length": 12, + "value": "\"iPad Air 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2470, + "length": 12, + "value": "\"iPad Air 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2504, + "length": 12, + "value": "\"iPad Air 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2538, + "length": 12, + "value": "\"iPad Air 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2569, + "length": 8, + "value": "\"iPad 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2609, + "length": 8, + "value": "\"iPad 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2649, + "length": 8, + "value": "\"iPad 7\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2689, + "length": 8, + "value": "\"iPad 8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2729, + "length": 8, + "value": "\"iPad 9\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2795, + "length": 11, + "value": "\"iPad Mini\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2829, + "length": 13, + "value": "\"iPad Mini 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2865, + "length": 13, + "value": "\"iPad Mini 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2901, + "length": 13, + "value": "\"iPad Mini 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2937, + "length": 13, + "value": "\"iPad Mini 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 2973, + "length": 13, + "value": "\"iPad Mini 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3032, + "length": 16, + "value": "\"iPad Pro 9.7\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3073, + "length": 17, + "value": "\"iPad Pro 10.5\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3113, + "length": 15, + "value": "\"iPad Pro 11\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3153, + "length": 23, + "value": "\"iPad Pro 11\" 2nd gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3201, + "length": 23, + "value": "\"iPad Pro 11\" 3rd gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3249, + "length": 17, + "value": "\"iPad Pro 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3293, + "length": 19, + "value": "\"iPad Pro 2 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3339, + "length": 19, + "value": "\"iPad Pro 3 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3385, + "length": 19, + "value": "\"iPad Pro 4 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3431, + "length": 19, + "value": "\"iPad Pro 5 12.9\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3491, + "length": 10, + "value": "\"iPhone 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3523, + "length": 11, + "value": "\"iPhone 4S\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3555, + "length": 10, + "value": "\"iPhone 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3587, + "length": 11, + "value": "\"iPhone 5S\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3620, + "length": 11, + "value": "\"iPhone 5C\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3652, + "length": 10, + "value": "\"iPhone 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3687, + "length": 15, + "value": "\"iPhone 6 Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3724, + "length": 11, + "value": "\"iPhone 6S\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3761, + "length": 16, + "value": "\"iPhone 6S Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3799, + "length": 11, + "value": "\"iPhone SE\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3831, + "length": 10, + "value": "\"iPhone 7\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3866, + "length": 15, + "value": "\"iPhone 7 Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3902, + "length": 10, + "value": "\"iPhone 8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3937, + "length": 15, + "value": "\"iPhone 8 Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 3973, + "length": 10, + "value": "\"iPhone X\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4005, + "length": 11, + "value": "\"iPhone XS\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4041, + "length": 15, + "value": "\"iPhone XS Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 11, + "value": "\"iPhone XR\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4111, + "length": 11, + "value": "\"iPhone 11\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4147, + "length": 15, + "value": "\"iPhone 11 Pro\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4190, + "length": 19, + "value": "\"iPhone 11 Pro Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4232, + "length": 19, + "value": "\"iPhone SE 2nd gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 16, + "value": "\"iPhone 12 Mini\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 11, + "value": "\"iPhone 12\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 15, + "value": "\"iPhone 12 Pro\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4394, + "length": 19, + "value": "\"iPhone 12 Pro Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4439, + "length": 16, + "value": "\"iPhone 13 Mini\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4477, + "length": 11, + "value": "\"iPhone 13\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4513, + "length": 15, + "value": "\"iPhone 13 Pro\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4556, + "length": 19, + "value": "\"iPhone 13 Pro Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4598, + "length": 19, + "value": "\"iPhone SE 3nd gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4639, + "length": 11, + "value": "\"iPhone 14\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4676, + "length": 16, + "value": "\"iPhone 14 Plus\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4717, + "length": 15, + "value": "\"iPhone 14 Pro\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4760, + "length": 19, + "value": "\"iPhone 14 Pro Max\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4829, + "length": 18, + "value": "\"Apple Watch 1gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4873, + "length": 22, + "value": "\"Apple Watch Series 1\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4921, + "length": 22, + "value": "\"Apple Watch Series 2\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 4969, + "length": 22, + "value": "\"Apple Watch Series 3\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5017, + "length": 22, + "value": "\"Apple Watch Series 4\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5065, + "length": 22, + "value": "\"Apple Watch Series 5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5113, + "length": 29, + "value": "\"Apple Watch Special Edition\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5168, + "length": 22, + "value": "\"Apple Watch Series 6\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5216, + "length": 22, + "value": "\"Apple Watch Series 7\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5282, + "length": 15, + "value": "\"Apple TV 1gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5319, + "length": 15, + "value": "\"Apple TV 2gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5356, + "length": 15, + "value": "\"Apple TV 3gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5393, + "length": 15, + "value": "\"Apple TV 4gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5432, + "length": 13, + "value": "\"Apple TV 4K\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5470, + "length": 18, + "value": "\"Apple TV 4K 2gen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHDevice+Ex.swift", + "kind": "StringLiteral", + "offset": 5515, + "length": 16, + "value": "\"?unrecognized?\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHNavigationController+EX.swift", + "kind": "BooleanLiteral", + "offset": 307, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHString+Extension.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 17, + "value": "\"M\/dd\/yyyy HH:mm\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHString+Extension.swift", + "kind": "StringLiteral", + "offset": 2266, + "length": 21, + "value": "\"yyyy-MM-dd HH:mm:ss\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHString+Extension.swift", + "kind": "IntegerLiteral", + "offset": 5443, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/CHViewController+Extension.swift", + "kind": "BooleanLiteral", + "offset": 3773, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "IntegerLiteral", + "offset": 656, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "FloatLiteral", + "offset": 1636, + "length": 4, + "value": "30.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "StringLiteral", + "offset": 5429, + "length": 13, + "value": "\"ActionBlock\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "StringLiteral", + "offset": 5476, + "length": 13, + "value": "\"ActionDelay\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/JXExtensions.swift", + "kind": "IntegerLiteral", + "offset": 6546, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/OtherExtension.swift", + "kind": "IntegerLiteral", + "offset": 2098, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Extension\/OtherExtension.swift", + "kind": "IntegerLiteral", + "offset": 2118, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 397, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "FloatLiteral", + "offset": 10173, + "length": 4, + "value": "30.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "FloatLiteral", + "offset": 10385, + "length": 4, + "value": "30.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10510, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10536, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10538, + "length": 2, + "value": "80" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10890, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10916, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "IntegerLiteral", + "offset": 10918, + "length": 2, + "value": "80" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "BooleanLiteral", + "offset": 11109, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/JXBaseViewController.swift", + "kind": "BooleanLiteral", + "offset": 11453, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/TestRecognizeSdkOfflineViewController.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 8, + "value": "\"转写\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/TestRecognizeSdkOnlineViewController.swift", + "kind": "StringLiteral", + "offset": 363, + "length": 14, + "value": "\"开始录音\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/BaseVC\/TestRecognizeSdkOnlineViewController.swift", + "kind": "StringLiteral", + "offset": 590, + "length": 14, + "value": "\"结束录音\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 621, + "length": 2, + "value": "19" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 761, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 911, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1279, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1423, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1566, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 1901, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXAllRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 2019, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 357, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 375, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 391, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "FloatLiteral", + "offset": 677, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "Array", + "offset": 792, + "length": 49, + "value": "[(\"创建时间\", true), (\"修改时间\", false)]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "Array", + "offset": 868, + "length": 16, + "value": "[\"批量管理\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXBatchOpViewController.swift", + "kind": "BooleanLiteral", + "offset": 905, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "BooleanLiteral", + "offset": 4863, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "BooleanLiteral", + "offset": 6133, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "IntegerLiteral", + "offset": 6170, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "IntegerLiteral", + "offset": 8414, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "IntegerLiteral", + "offset": 8437, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 14935, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 14947, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "IntegerLiteral", + "offset": 15096, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 15143, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "BooleanLiteral", + "offset": 15183, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "BooleanLiteral", + "offset": 15227, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 15291, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "FloatLiteral", + "offset": 15347, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15420, + "length": 24, + "value": "\"indeterminateAnimation\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15475, + "length": 10, + "value": "\"progress\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15525, + "length": 20, + "value": "\"transform.rotation\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15583, + "length": 17, + "value": "\"completionBlock\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXCircleProgress.swift", + "kind": "StringLiteral", + "offset": 15630, + "length": 9, + "value": "\"toValue\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 426, + "length": 14, + "value": "\"创建时间\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 442, + "length": 14, + "value": "\"修改时间\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 519, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "BooleanLiteral", + "offset": 562, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 657, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 806, + "length": 12, + "value": "\"2019-05-28\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 840, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 1102, + "length": 12, + "value": "\"2019-05-28\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 1136, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 1249, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 1413, + "length": 8, + "value": "\"取消\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 1634, + "length": 8, + "value": "\"确认\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 1882, + "length": 4, + "value": "\"zh\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "StringLiteral", + "offset": 2096, + "length": 4, + "value": "\"zh\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXDateFilterViewController.swift", + "kind": "IntegerLiteral", + "offset": 2261, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 355, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 359, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 366, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 3, + "value": "120" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 390, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "IntegerLiteral", + "offset": 393, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "FloatLiteral", + "offset": 636, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXLangOnlineViewController.swift", + "kind": "Array", + "offset": 756, + "length": 40, + "value": "[(\"普通话\", true), (\"英文\", false)]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXOperationToolBar.swift", + "kind": "StringLiteral", + "offset": 944, + "length": 8, + "value": "\"全选\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXOperationToolBar.swift", + "kind": "StringLiteral", + "offset": 1550, + "length": 14, + "value": "\"取消收藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "FloatLiteral", + "offset": 307, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "FloatLiteral", + "offset": 319, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "FloatLiteral", + "offset": 389, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "FloatLiteral", + "offset": 401, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "Array", + "offset": 2638, + "length": 49, + "value": "[(\"创建时间\", true), (\"修改时间\", false)]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "Array", + "offset": 2714, + "length": 16, + "value": "[\"批量管理\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPopTableView.swift", + "kind": "BooleanLiteral", + "offset": 2751, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPresentationController.swift", + "kind": "StringLiteral", + "offset": 1033, + "length": 25, + "value": "\"ShouldHidePresentBottom\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPresentationController.swift", + "kind": "FloatLiteral", + "offset": 1363, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPresentationController.swift", + "kind": "IntegerLiteral", + "offset": 1583, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXPresentationController.swift", + "kind": "IntegerLiteral", + "offset": 2430, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 631, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 787, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 819, + "length": 20, + "value": "\"Stop Transcription\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 955, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 1557, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 1601, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 2154, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 2198, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 2242, + "length": 14, + "value": "\"停止转写\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 2314, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 2358, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 2390, + "length": 14, + "value": "\"隐藏按钮\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 1501, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 2485, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 2605, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 4233, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4431, + "length": 59, + "value": "\"正在转写文字: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4489, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4546, + "length": 38, + "value": "\"录音结束后可申请全文转写\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 4344, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4774, + "length": 59, + "value": "\"正在转写文字: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4832, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 4898, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "IntegerLiteral", + "offset": 4929, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 4971, + "length": 59, + "value": "\"正在转写文字: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 5029, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "StringLiteral", + "offset": 5094, + "length": 38, + "value": "\"录音结束后可申请全文转写\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecogProgress.swift", + "kind": "BooleanLiteral", + "offset": 4686, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 347, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "StringLiteral", + "offset": 400, + "length": 8, + "value": "\"333333\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 641, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "StringLiteral", + "offset": 694, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 919, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 1224, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1268, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1297, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1336, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1370, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "IntegerLiteral", + "offset": 1497, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 1646, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 5506, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordCell.swift", + "kind": "BooleanLiteral", + "offset": 6302, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXRecordLocationViewController.swift", + "kind": "Array", + "offset": 701, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 415, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 524, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 547, + "length": 8, + "value": "\"提示\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 688, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 20, + "value": "\".SFUIText-Semibold\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 767, + "length": 20, + "value": "\"粗体特殊处理\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 844, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 853, + "length": 3, + "value": "-10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 866, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "IntegerLiteral", + "offset": 876, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 953, + "length": 5, + "value": "\"xxx\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 8, + "value": "\"取消\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "FloatLiteral", + "offset": 1433, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 1557, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "FloatLiteral", + "offset": 1600, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 4329, + "length": 8, + "value": "\"提示\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "BooleanLiteral", + "offset": 4392, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 4415, + "length": 8, + "value": "\"取消\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionAlertViewController.swift", + "kind": "StringLiteral", + "offset": 4438, + "length": 8, + "value": "\"确定\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionArrayViewController.swift", + "kind": "Array", + "offset": 642, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSelectionArrayViewController.swift", + "kind": "IntegerLiteral", + "offset": 710, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "IntegerLiteral", + "offset": 633, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "FloatLiteral", + "offset": 861, + "length": 3, + "value": "0.6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "StringLiteral", + "offset": 911, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXSnakebar.swift", + "kind": "StringLiteral", + "offset": 2275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTextLabelCell.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 5, + "value": "\"...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTextLabelCell.swift", + "kind": "IntegerLiteral", + "offset": 413, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 809, + "length": 8, + "value": "\"F8F8F8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 982, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 1039, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 1209, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 1332, + "length": 50, + "value": "\"网络服务异常。请检查您的网络设置\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 1642, + "length": 8, + "value": "\"F8F8F8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 1841, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2167, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2199, + "length": 14, + "value": "\"全部暂停\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2343, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2459, + "length": 76, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 36, + "value": "\"个文件待传输,正在传输第\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2531, + "length": 3, + "value": "\"个\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2591, + "length": 39, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2611, + "length": 18, + "value": "\"个文件待传输\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2292, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2768, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2884, + "length": 76, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2904, + "length": 36, + "value": "\"个文件待传输,正在传输第\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 2956, + "length": 3, + "value": "\"个\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3016, + "length": 39, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3036, + "length": 18, + "value": "\"个文件待传输\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 2717, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 3172, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3288, + "length": 76, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3308, + "length": 36, + "value": "\"个文件待传输,正在传输第\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3360, + "length": 3, + "value": "\"个\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3420, + "length": 39, + "value": "\"发现\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "StringLiteral", + "offset": 3440, + "length": 18, + "value": "\"个文件待传输\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "BooleanLiteral", + "offset": 3118, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 3635, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 3672, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXTopStateView.swift", + "kind": "IntegerLiteral", + "offset": 3755, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXUpdateButton.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXUpdateButton.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXUpdateButton.swift", + "kind": "StringLiteral", + "offset": 886, + "length": 14, + "value": "\"下载升级\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXUpdateButton.swift", + "kind": "StringLiteral", + "offset": 932, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1498, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 6, + "value": "\"1.0X\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1660, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1666, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1676, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 1687, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 1748, + "length": 3, + "value": "0.6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 1883, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2136, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2185, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2313, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "StringLiteral", + "offset": 2359, + "length": 8, + "value": "\"结束\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2532, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2582, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "StringLiteral", + "offset": 2707, + "length": 6, + "value": "\"1.0X\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2033, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 2901, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "Array", + "offset": 9083, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 9472, + "length": 4, + "value": "60.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 12377, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 12465, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 12516, + "length": 3, + "value": "1.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 12570, + "length": 3, + "value": "1.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 12654, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "StringLiteral", + "offset": 12718, + "length": 8, + "value": "\"B5B5B5\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 12887, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 13012, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "Array", + "offset": 13114, + "length": 8, + "value": "[(0, 0)]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 13168, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 13221, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13316, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13439, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13505, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13571, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 13721, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "FloatLiteral", + "offset": 13806, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "BooleanLiteral", + "offset": 13955, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 17980, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 18220, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 18429, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 18520, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 19497, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 19533, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 19599, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 19603, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 20477, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 20528, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 20581, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/CustomView\/JXWaveformView.swift", + "kind": "IntegerLiteral", + "offset": 22139, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 307, + "length": 20, + "value": "\"请输入手机号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 349, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 921, + "length": 45, + "value": "\"请输入6-20位密码,不支持纯数字\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 988, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "BooleanLiteral", + "offset": 1287, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 1563, + "length": 8, + "value": "\"隐藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 1663, + "length": 20, + "value": "\"请输入验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1705, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2296, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2328, + "length": 17, + "value": "\"发送验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2449, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2517, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2583, + "length": 8, + "value": "\"E6E7EC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2713, + "length": 8, + "value": "\"绑定\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2825, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2893, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "StringLiteral", + "offset": 2959, + "length": 8, + "value": "\"E6E7EC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3121, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "BooleanLiteral", + "offset": 3175, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "BooleanLiteral", + "offset": 3209, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Login&Register\/JXPhoneBindingViewController.swift", + "kind": "BooleanLiteral", + "offset": 3243, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "StringLiteral", + "offset": 556, + "length": 29, + "value": "\"请留下您的手机号码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "IntegerLiteral", + "offset": 776, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "IntegerLiteral", + "offset": 828, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 8, + "value": "\"完成\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextField.swift", + "kind": "BooleanLiteral", + "offset": 1104, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "BooleanLiteral", + "offset": 423, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "IntegerLiteral", + "offset": 479, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "IntegerLiteral", + "offset": 622, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "IntegerLiteral", + "offset": 674, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 8, + "value": "\"完成\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TextView.swift", + "kind": "BooleanLiteral", + "offset": 950, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 373, + "length": 12, + "value": "\"录音笔 \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 575, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 646, + "length": 20, + "value": "\".SFUIText-Semibold\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 693, + "length": 23, + "value": "\"pen粗体特殊处理\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 773, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 3, + "value": "-10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 795, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 805, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 964, + "length": 11, + "value": "\"手机App\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 1238, + "length": 20, + "value": "\".SFUIText-Semibold\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "StringLiteral", + "offset": 1285, + "length": 23, + "value": "\"app粗体特殊处理\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1374, + "length": 3, + "value": "-10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/JXCell_Feedback_TypeSwitch.swift", + "kind": "IntegerLiteral", + "offset": 1397, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell.swift", + "kind": "StringLiteral", + "offset": 123, + "length": 19, + "value": "\"MineTableViewCell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell.swift", + "kind": "BooleanLiteral", + "offset": 321, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell.swift", + "kind": "BooleanLiteral", + "offset": 490, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell.swift", + "kind": "BooleanLiteral", + "offset": 797, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "StringLiteral", + "offset": 138, + "length": 34, + "value": "\"MineTableViewCell_2TextImageText\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "BooleanLiteral", + "offset": 302, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "BooleanLiteral", + "offset": 609, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "BooleanLiteral", + "offset": 916, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextImageText.swift", + "kind": "BooleanLiteral", + "offset": 1246, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextSwitch.swift", + "kind": "StringLiteral", + "offset": 135, + "length": 31, + "value": "\"MineTableViewCell_2TextSwitch\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextSwitch.swift", + "kind": "BooleanLiteral", + "offset": 296, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_2TextSwitch.swift", + "kind": "BooleanLiteral", + "offset": 603, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "StringLiteral", + "offset": 131, + "length": 27, + "value": "\"MineTableViewCell_Generic\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "BooleanLiteral", + "offset": 341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "BooleanLiteral", + "offset": 533, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "BooleanLiteral", + "offset": 701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Generic.swift", + "kind": "BooleanLiteral", + "offset": 998, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Image2Text.swift", + "kind": "StringLiteral", + "offset": 134, + "length": 30, + "value": "\"MineTableViewCell_Image2Text\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Image2Text.swift", + "kind": "BooleanLiteral", + "offset": 347, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Image2Text.swift", + "kind": "BooleanLiteral", + "offset": 515, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_Image2Text.swift", + "kind": "BooleanLiteral", + "offset": 822, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_MyAvatar.swift", + "kind": "StringLiteral", + "offset": 132, + "length": 28, + "value": "\"MineTableViewCell_MyAvatar\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_MyAvatar.swift", + "kind": "BooleanLiteral", + "offset": 345, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_MyAvatar.swift", + "kind": "BooleanLiteral", + "offset": 592, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_MyAvatar.swift", + "kind": "BooleanLiteral", + "offset": 760, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "StringLiteral", + "offset": 278, + "length": 34, + "value": "\"MineTableViewCell_QualitySegment\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "BooleanLiteral", + "offset": 442, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "StringLiteral", + "offset": 713, + "length": 5, + "value": "\"优\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 5, + "value": "\"高\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "StringLiteral", + "offset": 727, + "length": 5, + "value": "\"中\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 774, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "BooleanLiteral", + "offset": 868, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1176, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1212, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1323, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1879, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "IntegerLiteral", + "offset": 1913, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_QualitySegment.swift", + "kind": "Array", + "offset": 1978, + "length": 403, + "value": "[\"播放的MP3音频接近真实(不影响转写效果),解码压缩速度一般,可清除缓存重新生成\", \"播放的MP3音频质量高(不影响转写效果),解码压缩速度较快,可清除缓存重新生成\", \"播放的MP3音频质量OK(不影响转写效果),解码压缩速度很快,可清除缓存重新生成\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextImage.swift", + "kind": "StringLiteral", + "offset": 271, + "length": 29, + "value": "\"MineTableViewCell_TextImage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextImage.swift", + "kind": "BooleanLiteral", + "offset": 460, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "StringLiteral", + "offset": 135, + "length": 31, + "value": "\"MineTableViewCell_TextSegment\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "BooleanLiteral", + "offset": 296, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "StringLiteral", + "offset": 567, + "length": 5, + "value": "\"大\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "StringLiteral", + "offset": 574, + "length": 5, + "value": "\"中\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "StringLiteral", + "offset": 581, + "length": 5, + "value": "\"小\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "BooleanLiteral", + "offset": 722, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 818, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 854, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 965, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSegment.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSwitch.swift", + "kind": "StringLiteral", + "offset": 134, + "length": 30, + "value": "\"MineTableViewCell_TextSwitch\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextSwitch.swift", + "kind": "BooleanLiteral", + "offset": 294, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextText.swift", + "kind": "StringLiteral", + "offset": 132, + "length": 28, + "value": "\"MineTableViewCell_TextText\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextText.swift", + "kind": "BooleanLiteral", + "offset": 320, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextText.swift", + "kind": "BooleanLiteral", + "offset": 627, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "StringLiteral", + "offset": 136, + "length": 32, + "value": "\"MineTableViewCell_TextTextNext\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "BooleanLiteral", + "offset": 352, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "BooleanLiteral", + "offset": 520, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "BooleanLiteral", + "offset": 824, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Cells\/MineTableViewCell_TextTextNext.swift", + "kind": "BooleanLiteral", + "offset": 1047, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 335, + "length": 23, + "value": "\"左眼度数 -700~100\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 380, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 23, + "value": "\"右眼度数 -700~100\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 599, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 776, + "length": 20, + "value": "\"设置近视度数\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 998, + "length": 20, + "value": "\"设置远视度数\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 1220, + "length": 14, + "value": "\"读取度数\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 1428, + "length": 10, + "value": "\"用户ID\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 1460, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 1637, + "length": 16, + "value": "\"切换用户ID\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 1855, + "length": 16, + "value": "\"读取用户ID\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2065, + "length": 20, + "value": "\"充值剩余时长\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 2107, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2284, + "length": 20, + "value": "\"设置剩余时长\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2506, + "length": 20, + "value": "\"读取剩余时长\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2723, + "length": 14, + "value": "\"透支阈值\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "IntegerLiteral", + "offset": 2759, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 2939, + "length": 20, + "value": "\"设置透支阈值\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 3164, + "length": 20, + "value": "\"读取透支阈值\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 3386, + "length": 20, + "value": "\"获取记录报表\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/Developer\/JXGlassTestViewController.swift", + "kind": "StringLiteral", + "offset": 3607, + "length": 20, + "value": "\"清空记录报表\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXAboutViewController.swift", + "kind": "BooleanLiteral", + "offset": 579, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXAboutViewController.swift", + "kind": "Array", + "offset": 720, + "length": 97, + "value": "[(\"官网\", \"http:\/\/www.timotech.cn\/\"), (\"官方微信公众号\", \"xxxxx\"), (\"分享日志\", \"\")]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXTextEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXTextEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 357, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXTextEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 2, + "value": "36" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSetting\/JXTextEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 559, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/CommonSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 100, + "length": 14, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/CommonSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 124, + "length": 4, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/CommonSettingSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 101, + "length": 10, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/CommonSettingSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 121, + "length": 12, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/DeviceSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 77, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/DeviceSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 95, + "length": 16, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/MineSectionType.swift", + "kind": "IntegerLiteral", + "offset": 110, + "length": 13, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/MyInfoDetailSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 82, + "length": 8, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/MyInfoDetailSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 100, + "length": 6, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/PenManagementSectionType.swift", + "kind": "IntegerLiteral", + "offset": 83, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/PenManagementSectionType.swift", + "kind": "IntegerLiteral", + "offset": 105, + "length": 12, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/SpaceManagementSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 84, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/SpaceSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 80, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/Enums\/VoiceSectionCellType.swift", + "kind": "IntegerLiteral", + "offset": 74, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "IntegerLiteral", + "offset": 395, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "IntegerLiteral", + "offset": 401, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "BooleanLiteral", + "offset": 641, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/HelpAndFeedback\/JXFeedbackViewController.swift", + "kind": "IntegerLiteral", + "offset": 711, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 200, + "length": 25, + "value": "\"请输入11位手机号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "IntegerLiteral", + "offset": 273, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 45, + "value": "\"请输入6-20位密码,不支持纯数字\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "BooleanLiteral", + "offset": 1049, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 1179, + "length": 8, + "value": "\"隐藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 20, + "value": "\"请输入验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "IntegerLiteral", + "offset": 1376, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "IntegerLiteral", + "offset": 1817, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 1845, + "length": 17, + "value": "\"发送验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 1984, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 2322, + "length": 14, + "value": "\"重置密码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/login\/ForgetPasswdViewController.swift", + "kind": "StringLiteral", + "offset": 2458, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 265, + "length": 2, + "value": "64" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1177, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1183, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1193, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1204, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1413, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1485, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "BooleanLiteral", + "offset": 1665, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "BooleanLiteral", + "offset": 1706, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 1815, + "length": 29, + "value": "\"用户协议 | 隐私政策\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1912, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1942, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 1953, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 1998, + "length": 18, + "value": "\"userAgreement:\/\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2043, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2054, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 2098, + "length": 12, + "value": "\"privacy:\/\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2137, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2148, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 2522, + "length": 14, + "value": "\"退出登录\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2631, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2642, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2715, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2745, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2756, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "FloatLiteral", + "offset": 2813, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2843, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 2854, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "StringLiteral", + "offset": 3111, + "length": 14, + "value": "\"注销账号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3220, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3231, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3304, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3334, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3345, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "FloatLiteral", + "offset": 3402, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3432, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/CommonSettingViewController.swift", + "kind": "IntegerLiteral", + "offset": 3443, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXHelpFeedbackViewController.swift", + "kind": "Array", + "offset": 285, + "length": 32, + "value": "[\"使用指南\", \"意见反馈\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXModifyPwdViewController.swift", + "kind": "StringLiteral", + "offset": 239, + "length": 8, + "value": "\"隐藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXModifyPwdViewController.swift", + "kind": "StringLiteral", + "offset": 358, + "length": 8, + "value": "\"隐藏\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXModifyPwdViewController.swift", + "kind": "BooleanLiteral", + "offset": 478, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXModifyPwdViewController.swift", + "kind": "BooleanLiteral", + "offset": 514, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 343, + "length": 20, + "value": "\"请输入手机号\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 385, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 745, + "length": 20, + "value": "\"请输入验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 787, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "IntegerLiteral", + "offset": 1167, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1199, + "length": 17, + "value": "\"发送验证码\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1320, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1388, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1454, + "length": 8, + "value": "\"E6E7EC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1587, + "length": 8, + "value": "\"完成\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1699, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1767, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "StringLiteral", + "offset": 1833, + "length": 8, + "value": "\"E6E7EC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "BooleanLiteral", + "offset": 1949, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/JXPhoneEditViewController.swift", + "kind": "BooleanLiteral", + "offset": 1983, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "IntegerLiteral", + "offset": 210, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "IntegerLiteral", + "offset": 226, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "IntegerLiteral", + "offset": 237, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/MyInfoDetailViewController.swift", + "kind": "BooleanLiteral", + "offset": 330, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/RuntimeEvn_wechat.swift", + "kind": "StringLiteral", + "offset": 86, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/Mine\/RuntimeEvn_wechat.swift", + "kind": "StringLiteral", + "offset": 127, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "BooleanLiteral", + "offset": 376, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "BooleanLiteral", + "offset": 434, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 637, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 699, + "length": 12, + "value": "\"Version --\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 804, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 857, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 888, + "length": 20, + "value": "\"已是最新版本\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1014, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1067, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1098, + "length": 15, + "value": "\"版本大小:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1227, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1325, + "length": 17, + "value": "\"版本修改:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1450, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1557, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1580, + "length": 17, + "value": "\"修复若干bug\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1851, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 1904, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "IntegerLiteral", + "offset": 1982, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXFirmUpdateViewController.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 105, + "value": "\"提示:升级过程需要10分钟左右,在此期间请保持录\n音笔与手机的蓝牙连接。\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 459, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 501, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 564, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 570, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 616, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 783, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 14, + "value": "\"解除绑定\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1093, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1104, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1177, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1207, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1218, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "FloatLiteral", + "offset": 1275, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1305, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1316, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "StringLiteral", + "offset": 1489, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXManagerViewController.swift", + "kind": "BooleanLiteral", + "offset": 1522, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 518, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 618, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 624, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 2, + "value": "34" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 8, + "value": "\"F8F8F8\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 894, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 947, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 978, + "length": 70, + "value": "\"名称后缀4位数为录音笔SN倒数第7位到倒数第4位数字\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 1180, + "length": 44, + "value": "\"没有发现我的设备? | 重新搜索\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1298, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1328, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1339, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1441, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1452, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1554, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1665, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1677, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1793, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1805, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 1855, + "length": 21, + "value": "\"cannotFindDevice:\/\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1903, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 1914, + "length": 1, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 1964, + "length": 11, + "value": "\"rescan:\/\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 2014, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "BooleanLiteral", + "offset": 2094, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "BooleanLiteral", + "offset": 2135, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "IntegerLiteral", + "offset": 2431, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 2484, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "StringLiteral", + "offset": 2515, + "length": 26, + "value": "\"搜索附近录音笔...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXScanBleViewController.swift", + "kind": "Array", + "offset": 2622, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "BooleanLiteral", + "offset": 442, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 12, + "value": "\"recordCell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 758, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 802, + "length": 2, + "value": "49" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "StringLiteral", + "offset": 879, + "length": 8, + "value": "\"3679FF\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "StringLiteral", + "offset": 996, + "length": 8, + "value": "\"全选\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 2614, + "length": 2, + "value": "13" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "IntegerLiteral", + "offset": 2749, + "length": 2, + "value": "12" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "StringLiteral", + "offset": 2802, + "length": 8, + "value": "\"999999\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "Array", + "offset": 2861, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXStorageViewController.swift", + "kind": "Array", + "offset": 2903, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "BooleanLiteral", + "offset": 577, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "IntegerLiteral", + "offset": 682, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "Array", + "offset": 781, + "length": 563, + "value": "[[(\"WiFi快传\", \"快速将笔中的录音文件传输到手机APP端。\")], [(\"如何开启?\", \"首先将录音笔与手机APP连接蓝牙。单机笔端WiFi按钮开启WiFi热点,然后在APP端根据引导连接到WiFi热点即可。\n注意:WiFi快传模式下,录音笔只能传输文件,不能录音。\"), (\"如何关闭?\", \"在WiFi快传模式下,单机笔端WiFi按钮即可断开WiFi连接。录音笔将自动恢复蓝牙连接。\")]]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "IntegerLiteral", + "offset": 4328, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/PenManager\/JXWiFiTransportViewController.swift", + "kind": "IntegerLiteral", + "offset": 4458, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TabVCs\/JXTabBarController.swift", + "kind": "StringLiteral", + "offset": 262, + "length": 8, + "value": "\"全部\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TabVCs\/JXTabBarController.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 14, + "value": "\"全部录音\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 337, + "length": 17, + "value": "\"当前版本:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 396, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 772, + "length": 17, + "value": "\"目标版本:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 831, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 1205, + "length": 14, + "value": "\"OTA文件:\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 1261, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 1383, + "length": 4, + "value": "\"--\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 1429, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 1558, + "length": 11, + "value": "\"OTA升级\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 1636, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 1824, + "length": 17, + "value": "\"选择OTA文件\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "IntegerLiteral", + "offset": 1908, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 2054, + "length": 17, + "value": "\"\/Documents\/ota\/\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/JXLocalUpgradeViewController.swift", + "kind": "StringLiteral", + "offset": 2102, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/VideoViewController.swift", + "kind": "StringLiteral", + "offset": 446, + "length": 6, + "value": "\"cell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/VideoViewController.swift", + "kind": "StringLiteral", + "offset": 572, + "length": 11, + "value": "\"RecordPen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/TestPage\/VideoViewController.swift", + "kind": "Array", + "offset": 602, + "length": 52, + "value": "[\"UIImagePicker\", \"AVCaptureMovie\", \"AVAssetWriter\"]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 15, + "value": "\"allRecordCell\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "IntegerLiteral", + "offset": 568, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "IntegerLiteral", + "offset": 574, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "IntegerLiteral", + "offset": 584, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/UI\/JXSearchResultViewController.swift", + "kind": "IntegerLiteral", + "offset": 595, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 253, + "length": 12, + "value": "\"deviceName\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 422, + "length": 9, + "value": "\"confirm\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 8, + "value": "\"toOpen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 577, + "length": 16, + "value": "\"openBleContent\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 636, + "length": 11, + "value": "\"toSetting\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 690, + "length": 8, + "value": "\"record\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 741, + "length": 8, + "value": "\"search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 6, + "value": "\"mine\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 841, + "length": 12, + "value": "\"disconnect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 896, + "length": 8, + "value": "\"delete\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 947, + "length": 11, + "value": "\"editTitle\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1001, + "length": 9, + "value": "\"collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1103, + "length": 13, + "value": "\"syncFileErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1159, + "length": 18, + "value": "\"recordDateFormat\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1220, + "length": 16, + "value": "\"hourTimeFormat\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1279, + "length": 12, + "value": "\"dateFormat\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 13, + "value": "\"poorStorage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1390, + "length": 20, + "value": "\"poorStorageMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1453, + "length": 17, + "value": "\"recognizeResult\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1513, + "length": 14, + "value": "\"scanMyDevice\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1570, + "length": 15, + "value": "\"noDeviceFound\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1628, + "length": 8, + "value": "\"reScan\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1679, + "length": 11, + "value": "\"snMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1733, + "length": 12, + "value": "\"penManager\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1788, + "length": 15, + "value": "\"cancelConnect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1846, + "length": 9, + "value": "\"unknown\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1898, + "length": 14, + "value": "\"messageTitle\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 1955, + "length": 21, + "value": "\"cancelFailedMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2019, + "length": 9, + "value": "\"bleName\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2071, + "length": 17, + "value": "\"firmwareVersion\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2131, + "length": 16, + "value": "\"storageManager\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2190, + "length": 6, + "value": "\"free\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2239, + "length": 11, + "value": "\"autoClear\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2293, + "length": 18, + "value": "\"autoClearMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2354, + "length": 14, + "value": "\"secretRecord\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2411, + "length": 21, + "value": "\"secretRecordMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2475, + "length": 9, + "value": "\"privacy\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2527, + "length": 16, + "value": "\"privacyMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2586, + "length": 5, + "value": "\"vad\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2634, + "length": 12, + "value": "\"vadMessage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2689, + "length": 15, + "value": "\"penFileManage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2747, + "length": 7, + "value": "\"clear\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2797, + "length": 14, + "value": "\"recordNormal\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2854, + "length": 12, + "value": "\"recordSync\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2909, + "length": 18, + "value": "\"recordConnectErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 2970, + "length": 15, + "value": "\"recordFullErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3028, + "length": 14, + "value": "\"recordUSBErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3085, + "length": 19, + "value": "\"recordHardwareErr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3147, + "length": 14, + "value": "\"recordFailed\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 13, + "value": "\"user_openid\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3287, + "length": 12, + "value": "\"user_token\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3347, + "length": 17, + "value": "\"user_login_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3459, + "length": 16, + "value": "\"user_login_pwd\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3554, + "length": 20, + "value": "\"user_all_sort_mode\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3650, + "length": 24, + "value": "\"user_collect_sort_mode\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3745, + "length": 16, + "value": "\"user_font_size\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3853, + "length": 18, + "value": "\"user_mp3_quality\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 3950, + "length": 14, + "value": "\"user_address\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 21, + "value": "\"user_search_records\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4125, + "length": 17, + "value": "\"user_filter_arr\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4203, + "length": 16, + "value": "\"user_developer\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4281, + "length": 17, + "value": "\"user_recog_mode\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4363, + "length": 23, + "value": "\"user_recog_audio_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4457, + "length": 18, + "value": "\"user_server_host\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4625, + "length": 14, + "value": "\"update_info_\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4705, + "length": 17, + "value": "\"last_sessionId_\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4796, + "length": 15, + "value": "\"save_binding_\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 4889, + "length": 18, + "value": "\"last_lang_online\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5025, + "length": 16, + "value": "\"png_no_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5084, + "length": 13, + "value": "\"png_no_help\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5140, + "length": 12, + "value": "\"png_no_pen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5195, + "length": 15, + "value": "\"png_no_record\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5253, + "length": 15, + "value": "\"png_no_search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5311, + "length": 13, + "value": "\"png_no_text\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5368, + "length": 10, + "value": "\"svg_menu\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5421, + "length": 9, + "value": "\"svg_pen\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5473, + "length": 14, + "value": "\"svn_pen_wifi\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5531, + "length": 17, + "value": "\"png_download_bg\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5591, + "length": 23, + "value": "\"png_download_progress\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5657, + "length": 10, + "value": "\"png_logo\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5710, + "length": 15, + "value": "\"png_play_logo\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5768, + "length": 15, + "value": "\"png_scan_icon\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5826, + "length": 15, + "value": "\"png_scan_wave\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5885, + "length": 10, + "value": "\"png_wait\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5938, + "length": 18, + "value": "\"png_info_disable\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 5999, + "length": 10, + "value": "\"png_info\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6052, + "length": 18, + "value": "\"png_play_disable\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6113, + "length": 10, + "value": "\"png_play\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6166, + "length": 11, + "value": "\"png_pause\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6220, + "length": 19, + "value": "\"png_share_disable\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6282, + "length": 11, + "value": "\"png_share\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6337, + "length": 20, + "value": "\"manager_center_ble\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6400, + "length": 13, + "value": "\"meituan_ble\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6456, + "length": 17, + "value": "\"png_lang_select\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6516, + "length": 8, + "value": "\"png_ok\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6567, + "length": 14, + "value": "\"png_progress\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6624, + "length": 13, + "value": "\"setting_ble\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6681, + "length": 14, + "value": "\"svg_power_10\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6738, + "length": 14, + "value": "\"svg_power_20\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6795, + "length": 14, + "value": "\"svg_power_30\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6852, + "length": 14, + "value": "\"svg_power_40\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6909, + "length": 14, + "value": "\"svg_power_50\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 6966, + "length": 14, + "value": "\"svg_power_60\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7023, + "length": 14, + "value": "\"svg_power_70\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7080, + "length": 14, + "value": "\"svg_power_80\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7137, + "length": 14, + "value": "\"svg_power_90\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7194, + "length": 15, + "value": "\"svg_power_100\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7253, + "length": 9, + "value": "\"svg_add\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7305, + "length": 10, + "value": "\"svg_back\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7358, + "length": 9, + "value": "\"svg_ble\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7410, + "length": 11, + "value": "\"svg_clear\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7464, + "length": 11, + "value": "\"svg_close\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7518, + "length": 14, + "value": "\"svg_download\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7575, + "length": 21, + "value": "\"svg_firmware_update\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7639, + "length": 11, + "value": "\"svg_light\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7693, + "length": 19, + "value": "\"svg_loading_small\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7755, + "length": 9, + "value": "\"svg_new\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7807, + "length": 10, + "value": "\"svg_next\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7860, + "length": 13, + "value": "\"svg_privacy\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7916, + "length": 16, + "value": "\"svg_record_nor\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 7975, + "length": 17, + "value": "\"svg_record_sync\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8035, + "length": 17, + "value": "\"svg_red_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8095, + "length": 12, + "value": "\"svg_search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8150, + "length": 14, + "value": "\"svg_selected\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8207, + "length": 13, + "value": "\"svg_storage\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8263, + "length": 16, + "value": "\"svg_time_start\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8322, + "length": 16, + "value": "\"svg_unselected\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8381, + "length": 19, + "value": "\"svg_white_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8443, + "length": 18, + "value": "\"svg_white_delete\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8504, + "length": 16, + "value": "\"svg_white_edit\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8563, + "length": 17, + "value": "\"svg_white_share\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8624, + "length": 13, + "value": "\"tab_all_sel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8680, + "length": 9, + "value": "\"tab_all\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8732, + "length": 17, + "value": "\"tab_collect_sel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8792, + "length": 13, + "value": "\"tab_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8849, + "length": 14, + "value": "\"tab_mine_sel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8906, + "length": 10, + "value": "\"tab_mine\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 8959, + "length": 16, + "value": "\"tab_search_sel\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9018, + "length": 12, + "value": "\"tab_search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9073, + "length": 17, + "value": "\"tab_more_action\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9134, + "length": 11, + "value": "\"png_alarm\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9188, + "length": 13, + "value": "\"png_collect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9244, + "length": 17, + "value": "\"png_item_select\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9304, + "length": 18, + "value": "\"png_head_default\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9365, + "length": 17, + "value": "\"png_filter_date\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9425, + "length": 25, + "value": "\"png_list_item_no_select\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9493, + "length": 22, + "value": "\"png_list_item_select\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9558, + "length": 24, + "value": "\"png_list_item_unselect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9625, + "length": 13, + "value": "\"png_list_op\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9681, + "length": 14, + "value": "\"png_location\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9738, + "length": 14, + "value": "\"png_mark_new\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9795, + "length": 14, + "value": "\"png_recoging\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9852, + "length": 13, + "value": "\"png_red_dot\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9908, + "length": 12, + "value": "\"png_search\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 9963, + "length": 15, + "value": "\"png_sort_mode\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10021, + "length": 18, + "value": "\"png_sync_disable\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10082, + "length": 13, + "value": "\"png_sync_on\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10138, + "length": 16, + "value": "\"png_sync_pause\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10197, + "length": 15, + "value": "\"png_sync_wait\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10255, + "length": 11, + "value": "\"png_trans\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10309, + "length": 15, + "value": "\"png_uncollect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10491, + "length": 24, + "value": "\"ResetWindowRoot2TabBar\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10641, + "length": 22, + "value": "\"ResetWindowRootLogin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10752, + "length": 16, + "value": "\"NetworkChanged\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10872, + "length": 16, + "value": "\"EndShorthandVC\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 10998, + "length": 23, + "value": "\"DeviceConnectOrBindOK\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11103, + "length": 13, + "value": "\"CancelRecog\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11196, + "length": 9, + "value": "\"Depaire\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11313, + "length": 18, + "value": "\"AllRecordRefresh\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11458, + "length": 20, + "value": "\"AllRecordFilesBack\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11583, + "length": 19, + "value": "\"AllRecordPenState\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11661, + "length": 15, + "value": "\"AllRecordBind\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11778, + "length": 17, + "value": "\"AllRecordLocate\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 11890, + "length": 19, + "value": "\"RecogStateChanged\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 12017, + "length": 20, + "value": "\"RecogCellHighLight\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 12160, + "length": 22, + "value": "\"RecordEditTimeChange\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 12285, + "length": 22, + "value": "\"TextViewKeyboardDone\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/GlobalConst.swift", + "kind": "StringLiteral", + "offset": 12416, + "length": 16, + "value": "\"HideLangSelect\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "Array", + "offset": 374, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "Array", + "offset": 471, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "Array", + "offset": 4562, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 4731, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 4788, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "BooleanLiteral", + "offset": 4931, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 4968, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "BooleanLiteral", + "offset": 5034, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "BooleanLiteral", + "offset": 8284, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22248, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22310, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22366, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22425, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXDownloader.swift", + "kind": "IntegerLiteral", + "offset": 22470, + "length": 3, + "value": "100" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXFPSMonitor.swift", + "kind": "IntegerLiteral", + "offset": 641, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXFPSMonitor.swift", + "kind": "FloatLiteral", + "offset": 671, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXFPSMonitor.swift", + "kind": "IntegerLiteral", + "offset": 697, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "BooleanLiteral", + "offset": 306, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "IntegerLiteral", + "offset": 6016, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "IntegerLiteral", + "offset": 11925, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 11945, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "IntegerLiteral", + "offset": 12089, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12109, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12130, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "IntegerLiteral", + "offset": 12155, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12291, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12312, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12333, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12358, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12387, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12443, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12472, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12497, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXNetworker.swift", + "kind": "StringLiteral", + "offset": 12526, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "BooleanLiteral", + "offset": 375, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 612, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 16111, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 16134, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 16155, + "length": 3, + "value": "1.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRecordPlayer.swift", + "kind": "FloatLiteral", + "offset": 16177, + "length": 3, + "value": "2.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRouter.swift", + "kind": "FloatLiteral", + "offset": 2222, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXRouter.swift", + "kind": "BooleanLiteral", + "offset": 2246, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSearcher.swift", + "kind": "BooleanLiteral", + "offset": 374, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSearcher.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 14, + "value": "\"search_queue\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 364, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 520, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 572, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 639, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 690, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 1701, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 1782, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 2134, + "length": 3, + "value": "600" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 3321, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 3356, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 3554, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 3590, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "FloatLiteral", + "offset": 25069, + "length": 4, + "value": "30.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 25926, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 26741, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 26807, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "StringLiteral", + "offset": 31248, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 31300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 31814, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "BooleanLiteral", + "offset": 31839, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "Array", + "offset": 34224, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 37025, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/JXSource.swift", + "kind": "IntegerLiteral", + "offset": 37094, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 105, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 159, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 219, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 296, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 342, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 388, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 434, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 515, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 579, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "BooleanLiteral", + "offset": 728, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 802, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "StringLiteral", + "offset": 932, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 989, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 1060, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "BooleanLiteral", + "offset": 1132, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "IntegerLiteral", + "offset": 2894, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Legency\/Utils\/SqliteManager.swift", + "kind": "BooleanLiteral", + "offset": 2913, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 2894, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "StringLiteral", + "offset": 3788, + "length": 39, + "value": "\"com.moonlightapps.SwiftySound.enabled\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 4264, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "StringLiteral", + "offset": 5845, + "length": 48, + "value": "\"com.moonlightapps.SwiftySound.stopNotification\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 6365, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "BooleanLiteral", + "offset": 7422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 8440, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "IntegerLiteral", + "offset": 9134, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/AudioSoundTools.swift", + "kind": "StringLiteral", + "offset": 11829, + "length": 53, + "value": "\"com.moonlightapps.SwiftySound.associatedCallbackKey\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "BooleanLiteral", + "offset": 292, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "BooleanLiteral", + "offset": 654, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "IntegerLiteral", + "offset": 817, + "length": 2, + "value": "14" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 860, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 873, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 885, + "length": 4, + "value": "0.45" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 898, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "StringLiteral", + "offset": 962, + "length": 15, + "value": "\"00:00 \/ 00:00\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "BooleanLiteral", + "offset": 1036, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1216, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1248, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "IntegerLiteral", + "offset": 1273, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1327, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1339, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1350, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1362, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1419, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1431, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1442, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "FloatLiteral", + "offset": 1454, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudAudioPlayerViewController.swift", + "kind": "BooleanLiteral", + "offset": 1518, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "BooleanLiteral", + "offset": 418, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "BooleanLiteral", + "offset": 475, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 540, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 819, + "length": 5, + "value": "16000" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 860, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 902, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/SoundPlay\/PlaudPCMPlayer.swift", + "kind": "IntegerLiteral", + "offset": 990, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudDomainManager.swift", + "kind": "BooleanLiteral", + "offset": 1593, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "Dictionary", + "offset": 948, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "IntegerLiteral", + "offset": 1022, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "IntegerLiteral", + "offset": 1082, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "IntegerLiteral", + "offset": 1168, + "length": 3, + "value": "180" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudFileUploader.swift", + "kind": "IntegerLiteral", + "offset": 1483, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLocalizationManager.swift", + "kind": "StringLiteral", + "offset": 220, + "length": 21, + "value": "\"PlaudDeviceBasicSDK\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 22, + "value": "\"com.plaud.log.upload\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 21, + "value": "\"com.plaud.log.timer\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "BooleanLiteral", + "offset": 1018, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "Array", + "offset": 1069, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "BooleanLiteral", + "offset": 1110, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "IntegerLiteral", + "offset": 36223, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "IntegerLiteral", + "offset": 36254, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudLogUploadManager.swift", + "kind": "IntegerLiteral", + "offset": 36281, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 12, + "value": "\"public_key\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 659, + "length": 13, + "value": "\"private_key\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3150, + "length": 14, + "value": "\"PartnerToken\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3230, + "length": 18, + "value": "\"$(PARTNER_TOKEN)\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3269, + "length": 59, + "value": "\"[PlaudPartnerApiManager] ✅ Token loaded from Info.plist\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3379, + "length": 74, + "value": "\"[PlaudPartnerApiManager] ⚠️ Token NOT available! raw=\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3446, + "length": 5, + "value": "\"nil\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3452, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudPartnerApiManager.swift", + "kind": "StringLiteral", + "offset": 3469, + "length": 148, + "value": "\"[PlaudPartnerApiManager] 💡 Ensure: 1) ios\/PartnerConfig.xcconfig exists and contains PARTNER_TOKEN 2) pod install has been run 3) clean build\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 448, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 475, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 505, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 631, + "length": 45, + "value": "\"PlaudSDKPermissionManager.permissions.cache\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 710, + "length": 52, + "value": "\"PlaudSDKPermissionManager.permissions.cache.expire\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 798, + "length": 42, + "value": "\"PlaudSDKPermissionManager.sdkToken.cache\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudSDKPermissionManager.swift", + "kind": "StringLiteral", + "offset": 877, + "length": 49, + "value": "\"PlaudSDKPermissionManager.sdkToken.cache.expire\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 149, + "length": 9, + "value": "\"PENDING\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 178, + "length": 9, + "value": "\"RUNNING\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 10, + "value": "\"PROGRESS\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 238, + "length": 9, + "value": "\"SUCCESS\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 9, + "value": "\"FAILURE\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 298, + "length": 11, + "value": "\"CANCELLED\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 9, + "value": "\"TIMEOUT\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 2437, + "length": 18, + "value": "\"audio_transcribe\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 2479, + "length": 14, + "value": "\"ai_summarize\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 2511, + "length": 8, + "value": "\"ai_etl\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 2542, + "length": 13, + "value": "\"audio_merge\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 3524, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 3558, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "Dictionary", + "offset": 3596, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "Dictionary", + "offset": 4074, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "Dictionary", + "offset": 4689, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 5471, + "length": 11, + "value": "\"task_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 5509, + "length": 13, + "value": "\"task_params\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6190, + "length": 17, + "value": "\"organization_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6231, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6266, + "length": 11, + "value": "\"device_sn\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6304, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 6663, + "length": 5, + "value": "\"1.0\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7390, + "length": 10, + "value": "\"end_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7427, + "length": 13, + "value": "\"update_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7463, + "length": 9, + "value": "\"file_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7498, + "length": 12, + "value": "\"start_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7555, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7594, + "length": 15, + "value": "\"metadata_json\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7636, + "length": 13, + "value": "\"total_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 7680, + "length": 17, + "value": "\"completed_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11430, + "length": 10, + "value": "\"end_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11467, + "length": 13, + "value": "\"update_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11503, + "length": 9, + "value": "\"file_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11538, + "length": 12, + "value": "\"start_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11595, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11634, + "length": 15, + "value": "\"metadata_json\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11680, + "length": 17, + "value": "\"completed_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11724, + "length": 13, + "value": "\"total_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11820, + "length": 27, + "value": "\"estimated_completion_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 11876, + "length": 15, + "value": "\"task_statuses\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14735, + "length": 10, + "value": "\"end_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14772, + "length": 13, + "value": "\"update_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14808, + "length": 9, + "value": "\"file_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14843, + "length": 12, + "value": "\"start_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14900, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14939, + "length": 15, + "value": "\"metadata_json\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 14985, + "length": 17, + "value": "\"completed_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 15029, + "length": 13, + "value": "\"total_tasks\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 15125, + "length": 27, + "value": "\"estimated_completion_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 15181, + "length": 15, + "value": "\"task_statuses\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 24508, + "length": 13, + "value": "\"deal_reason\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 24550, + "length": 16, + "value": "\"no_deal_reason\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25569, + "length": 28, + "value": "\"assessment_treatment_pairs\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25660, + "length": 24, + "value": "\"communication_feedback\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25715, + "length": 17, + "value": "\"clinical_report\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25833, + "length": 19, + "value": "\"customer_projects\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25903, + "length": 15, + "value": "\"deal_analysis\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 25949, + "length": 17, + "value": "\"doctor_projects\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 27924, + "length": 12, + "value": "\"key_points\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 27964, + "length": 14, + "value": "\"action_items\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34044, + "length": 12, + "value": "\"summary_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34089, + "length": 20, + "value": "\"select_prompt_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34140, + "length": 17, + "value": "\"speaker_mapping\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34184, + "length": 13, + "value": "\"use_persona\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34245, + "length": 13, + "value": "\"tokens_lens\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34285, + "length": 13, + "value": "\"retry_count\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34368, + "length": 15, + "value": "\"ai_suggestion\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 34533, + "length": 11, + "value": "\"text_lens\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35079, + "length": 19, + "value": "\"industry_category\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35127, + "length": 15, + "value": "\"language_code\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35199, + "length": 21, + "value": "\"recommend_questions\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35248, + "length": 14, + "value": "\"summary_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35295, + "length": 19, + "value": "\"original_category\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35340, + "length": 12, + "value": "\"summary_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 35686, + "length": 14, + "value": "\"main_purpose\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36218, + "length": 16, + "value": "\"ai_suggestions\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36261, + "length": 13, + "value": "\"insert_more\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36342, + "length": 11, + "value": "\"date_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36725, + "length": 22, + "value": "\"speaker_name_mapping\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 36841, + "length": 15, + "value": "\"ai_suggestion\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 37775, + "length": 14, + "value": "\"task_results\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 37817, + "length": 14, + "value": "\"completed_at\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 37936, + "length": 27, + "value": "\"estimated_completion_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 37992, + "length": 15, + "value": "\"task_statuses\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 42124, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 42231, + "length": 3, + "value": "5.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "IntegerLiteral", + "offset": 42300, + "length": 3, + "value": "720" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 59149, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 63009, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 63043, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "Dictionary", + "offset": 64007, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 65529, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 65563, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 68081, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 68115, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 68192, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 69650, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 69684, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 69786, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 71750, + "length": 4, + "value": "\"en\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "BooleanLiteral", + "offset": 71784, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 71858, + "length": 9, + "value": "\"MEETING\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "StringLiteral", + "offset": 71924, + "length": 8, + "value": "\"openai\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "IntegerLiteral", + "offset": 71959, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 71994, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 73975, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManager.swift", + "kind": "FloatLiteral", + "offset": 75138, + "length": 6, + "value": "3600.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 304, + "length": 30, + "value": "\"https:\/\/platform-jp.plaud.ai\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 18, + "value": "\"client_14fb62...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 492, + "length": 13, + "value": "\"sk_yueBq...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 582, + "length": 18, + "value": "\"org_000b46e9-...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 670, + "length": 19, + "value": "\"orgu_23f91cee-...\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 790, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 834, + "length": 20, + "value": "\"sn-linkedcare-test\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 932, + "length": 23, + "value": "\"linkedcare_aesthetics\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/PlaudWorkflowManagerTest.swift", + "kind": "StringLiteral", + "offset": 1010, + "length": 23, + "value": "\"linkedcare_aesthetics\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4561, + "length": 10, + "value": "\"owner_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4600, + "length": 15, + "value": "\"metadata_json\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4638, + "length": 9, + "value": "\"file_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4737, + "length": 14, + "value": "\"task_results\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4779, + "length": 14, + "value": "\"completed_at\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4898, + "length": 27, + "value": "\"estimated_completion_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 4954, + "length": 15, + "value": "\"task_statuses\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 19557, + "length": 9, + "value": "\"task_id\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 19591, + "length": 11, + "value": "\"task_type\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 19648, + "length": 12, + "value": "\"start_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/Utils\/WorkflowResultResponse.swift", + "kind": "StringLiteral", + "offset": 19684, + "length": 10, + "value": "\"end_time\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 11062, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 11095, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 11124, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 11154, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/AudioFileDecryptor.swift", + "kind": "IntegerLiteral", + "offset": 12161, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "Array", + "offset": 566, + "length": 24, + "value": "[0x4F, 0x67, 0x67, 0x53]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "Array", + "offset": 651, + "length": 48, + "value": "[0x4F, 0x70, 0x75, 0x73, 0x48, 0x65, 0x61, 0x64]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "IntegerLiteral", + "offset": 753, + "length": 5, + "value": "48000" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/OggOpusParser.swift", + "kind": "IntegerLiteral", + "offset": 824, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 351, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 473, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 1029, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 1281, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 19332, + "length": 4, + "value": "0x14" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 19383, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 19432, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 19806, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 19907, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 20027, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 20179, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Array", + "offset": 20269, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 20388, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 20461, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 20489, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 20520, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 20703, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 20896, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 21078, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 21243, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Dictionary", + "offset": 22616, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Dictionary", + "offset": 23621, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 24465, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Dictionary", + "offset": 24496, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 29454, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 29919, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "BooleanLiteral", + "offset": 30393, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 52551, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "StringLiteral", + "offset": 52596, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 52692, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "IntegerLiteral", + "offset": 53826, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent.swift", + "kind": "Dictionary", + "offset": 71058, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4782, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4803, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4821, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4847, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 4877, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "IntegerLiteral", + "offset": 5418, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+Encryption.swift", + "kind": "BooleanLiteral", + "offset": 7234, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 407, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 418, + "length": 13, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 441, + "length": 18, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 469, + "length": 14, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 493, + "length": 10, + "value": "4" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 513, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 534, + "length": 9, + "value": "6" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 553, + "length": 13, + "value": "7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 576, + "length": 24, + "value": "8" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 610, + "length": 10, + "value": "9" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+FirmwareInstaller.swift", + "kind": "IntegerLiteral", + "offset": 642, + "length": 3, + "value": "255" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 177, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 202, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 1, + "value": "2" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 252, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1092, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1120, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1152, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1178, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1204, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1231, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "BooleanLiteral", + "offset": 1251, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1632, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "StringLiteral", + "offset": 1712, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "Array", + "offset": 1795, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1857, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "BooleanLiteral", + "offset": 1894, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1933, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+OTA.swift", + "kind": "IntegerLiteral", + "offset": 1997, + "length": 2, + "value": "15" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "BooleanLiteral", + "offset": 619, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 1638, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 1679, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "BooleanLiteral", + "offset": 1707, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 3958, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 3999, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 5072, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "BooleanLiteral", + "offset": 5137, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 6510, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 6551, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 10490, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 10528, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "BooleanLiteral", + "offset": 10552, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 11111, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+QuickUpdate.swift", + "kind": "StringLiteral", + "offset": 11149, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+UpdateManager.swift", + "kind": "StringLiteral", + "offset": 4635, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+UpdateManager.swift", + "kind": "StringLiteral", + "offset": 4676, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+UpdateManager.swift", + "kind": "StringLiteral", + "offset": 15251, + "length": 9, + "value": "\"notepin\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudDeviceAgent+UpdateManager.swift", + "kind": "StringLiteral", + "offset": 15292, + "length": 3, + "value": "\"V\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "IntegerLiteral", + "offset": 451, + "length": 3, + "value": "512" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 505, + "length": 10, + "value": "\"PLAUD.AI\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "BooleanLiteral", + "offset": 4091, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4380, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4455, + "length": 548, + "value": "\"PlaudEncryptHeader {\n magic: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4547, + "length": 5, + "value": "\"N\/A\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4553, + "length": 7, + "value": "\"\n version: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4583, + "length": 10, + "value": "\"\n headerSize: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4624, + "length": 3, + "value": "\"\n crc: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4646, + "length": 6, + "value": "\"\n userId: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4680, + "length": 8, + "value": "\"\n fileType: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4712, + "length": 7, + "value": "\"\n channel: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4742, + "length": 11, + "value": "\"\n encryptType: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4780, + "length": 8, + "value": "\"\n duration: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4812, + "length": 1, + "value": "\"s\n counter: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4843, + "length": 5, + "value": "\"\n nonce: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4890, + "length": 6, + "value": "\"%02X\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4913, + "length": 7, + "value": "\"\n segment: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4943, + "length": 11, + "value": "\"\n isEncrypted: \"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudEncryptHeader.swift", + "kind": "StringLiteral", + "offset": 4981, + "length": 1, + "value": "\"\n}\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "Dictionary", + "offset": 158, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "StringLiteral", + "offset": 207, + "length": 28, + "value": "\"com.plaud.PlaudFileManager\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 2501, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 3069, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 5148, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 6426, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 6913, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudFileManager.swift", + "kind": "IntegerLiteral", + "offset": 9875, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 802, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 811, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 816, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 948, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 960, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 1202, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 1379, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1472, + "length": 29, + "value": "\"PlaudLogConfig_MaxFileCount\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1534, + "length": 27, + "value": "\"PlaudLogConfig_MaxFileAge\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1595, + "length": 28, + "value": "\"PlaudLogConfig_MaxFileSize\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1660, + "length": 31, + "value": "\"PlaudLogConfig_UploadInterval\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 1727, + "length": 30, + "value": "\"PlaudLogConfig_UploadTimeout\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2190, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2229, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2233, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2243, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2276, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2281, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 2288, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 3495, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 3594, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 5560, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 5685, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 5692, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "IntegerLiteral", + "offset": 5834, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogConfig.swift", + "kind": "StringLiteral", + "offset": 8023, + "length": 30, + "value": "\"PlaudLogConfigurationChanged\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudLogFileRotationManager.swift", + "kind": "StringLiteral", + "offset": 560, + "length": 24, + "value": "\"com.plaud.log.rotation\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4790, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 4927, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 5081, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "Array", + "offset": 5788, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5963, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 6041, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 6151, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "Dictionary", + "offset": 6286, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "Dictionary", + "offset": 6407, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 6535, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 6619, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "StringLiteral", + "offset": 6696, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 6847, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 7182, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "FloatLiteral", + "offset": 7231, + "length": 3, + "value": "0.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "StringLiteral", + "offset": 7304, + "length": 22, + "value": "\"com.plaud.wifi.speed\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "Dictionary", + "offset": 10457, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 11702, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 12266, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 13848, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 14271, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 14289, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 14582, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 14862, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/PlaudWiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 15746, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 287, + "length": 19, + "value": "\"com.plaud.sdk.rsa\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 350, + "length": 17, + "value": "\"rsa_private_key\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 410, + "length": 16, + "value": "\"rsa_public_key\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 629, + "length": 15, + "value": "\"sn_signature_\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "Dictionary", + "offset": 705, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 751, + "length": 498, + "value": "\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw\/BD435WcKrtWYOUDlmG\nY1PfmsJYMV3KA+3T4wg7MC+LD1NucvXrC7ug\/BMIYbScvIucsEgRSg0e2BeGkDDu\nPOUmestC71RuZIptIKCjA8pHndTew4TGhqMVT2V8VuCiOPyqL10GeIYtdqthHxAs\nhNgL7ZmpX1gS3+R\/dcyigv+BgSNwUPRMzdSgR3fsIlqBIsoCkl6u87fnT3ymafYa\nYdwDqhMgyc5OEhpyrSqWuSb9FAtKbzS3C7vvPUM8Ntao0sbu7dh1ux\/EPgBfqEgt\n0XlrQdhRn0JnwHhQUwyOpvqRUUUyS06d4XRMD\/vl47\/Zix21TWz7YuT2xYdpXJEG\n+QIDAQAB\n-----END PUBLIC KEY-----\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/swiftfiles\/RSASecretConfig.swift", + "kind": "StringLiteral", + "offset": 1293, + "length": 1827, + "value": "\"-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDD8EPjflZwqu1Z\ng5QOWYZjU9+awlgxXcoD7dPjCDswL4sPU25y9esLu6D8EwhhtJy8i5ywSBFKDR7Y\nF4aQMO485SZ6y0LvVG5kim0goKMDyked1N7DhMaGoxVPZXxW4KI4\/KovXQZ4hi12\nq2EfECyE2AvtmalfWBLf5H91zKKC\/4GBI3BQ9EzN1KBHd+wiWoEiygKSXq7zt+dP\nfKZp9hph3AOqEyDJzk4SGnKtKpa5Jv0UC0pvNLcLu+89Qzw21qjSxu7t2HW7H8Q+\nAF+oSC3ReWtB2FGfQmfAeFBTDI6m+pFRRTJLTp3hdEwP++Xjv9mLHbVNbPti5PbF\nh2lckQb5AgMBAAECggEAFRpjDXT1dWQLdTklMJh2z2rgqeflnMeHsv2h9RFVYp60\nQP3Q5wPSgWx\/bbbVD8Tmnq4AvcG9Tvbzy\/1Yql4Cwr9BcjdDKcizrRN1pm52sDlQ\nllCvf2plAWo+KNN63VaLUkzwPXKs+D0nV2Ek8DYLPXGRc1E5+0FeowuWqMbV9\/rB\nizGjU2wVOoDajpBlE+TTlCrcE1JqkR4Y+3v55ReMxnLY\/GvdYIf0Rn7fZRo6CNw5\nlpKz+52ecC4DnnIDSGOHfMRCLIwRfXTZu2+Vp9Egs5KU7uV1JXlObLsP7u7LGQk3\n6nYvDZFR1qLOq1eABqJ4ZGWL4jynIrmdvSIooDflAQKBgQDvhFtpeC1jQTuY8pbn\nGIyX56RFZUepZzEiDd1osMNW1VQRGvHJxSXd5+hIz0PW7st\/FG+b2sqSbajnsS23\nBZmAnR8FiVchnNG7BJ5zLCPHZPDRZbi2Y\/L19SXE9XnEDdf4sdzXjS1pqsMqyx6H\n18IpyOEngYu\/NrJThIqWjavFwQKBgQDRbCxFjXN0Eq3FncezAcriNp25UznzvW2m\nrd3KTAhaVacRboxt8Yz4zr1wGfBth949yu+a1pUeejBE4N\/oTJLrA6IJ0tMcwP4A\nzKzCmTy8SC61slQDNyjJQQN92xJdOBZ3VwfTZfdMn7Oab6MWxlHT\/uEhIE+omesi\n0ZMzYIe\/OQKBgGWQTGrmyOhDqw\/qHk8UO9nWIfRDRCXzWgREuNRB0DMr9p\/iOxEC\nBlKYmgj1yqCDVcsnUURXfHqnAW5t1SK8vyCof5ULbeUU6GJTTRUtbGaKyQsiBTdi\nHo5pS4C\/TsjxzdjpIupMNSuPe37T7rhPp0espLzp0+ZbPTbpBxNcM7CBAoGBAML0\n4tn07q\/125OGaKv6VTb2BSrLkb2YcQWkAj8bPQNrjVYrBcwr\/EJ7o9tCKpKs03XO\n\/\/OzI6r1sQ3OEmOdNYBXJ3fhreqst0ljQMkAAox83g8D7jX4GZ4RSgDV+miRmEiM\n2pov6GKKoZZ5que+w9qJAmfmPoIEl+MYGuLPUE\/xAoGBANqNpRekYvbSDA8V+aBW\nRHp14j1HLP85OszGf5uWTPI4eg3zhiMPFTukiEClXmdBAOVtAmljd7CtBvgw68uu\n+Kz0bESK4pXDeo\/hZK3IcqGuqTp48d5kOjJrKSafzUxIpdEWnUZW0h5wrvMSOaA0\nM7AVXGFTz4jihnc8LeavtoZ4\n-----END PRIVATE KEY-----\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/PlaudLogEncryption.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 34, + "value": "\"plaud2023_log_chacha20_key_32bit\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/PlaudLogEncryption.swift", + "kind": "Array", + "offset": 342, + "length": 36, + "value": "[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/PlaudLogEncryption.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PlaudDeviceBasicSDK\/PlaudLogEncryption.swift", + "kind": "IntegerLiteral", + "offset": 418, + "length": 4, + "value": "1024" + } + ] +} \ No newline at end of file diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..782551d Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface new file mode 100644 index 0000000..37f0e1b --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface @@ -0,0 +1,1764 @@ +// 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-ios13 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name PlaudDeviceBasicSDK +// swift-module-flags-ignorable: -no-verify-emitted-module-interface +import AVFoundation +import AVKit +import CoreTelephony.CTCellularData +import CommonCrypto +import CoreBluetooth +import CoreLocation +import CoreTelephony +import CryptoKit +import Foundation +import MediaPlayer +import MobileCoreServices +import ObjectiveC +import Photos +@_exported import PlaudBleSDK +@_exported import PlaudDeviceBasicSDK +import PlaudWiFiSDK +import Security +import Swift +import UIKit +import WebKit +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +@_hasMissingDesignatedInitializers @objc @_Concurrency.MainActor @preconcurrency public class PlaudWifiAddingPage : UIKit.UIViewController { + @_Concurrency.MainActor @preconcurrency public var completion: ((PlaudDeviceBasicSDK.PlaudWifiInfo?) -> Swift.Void)? + @_Concurrency.MainActor @preconcurrency public init(isEditing: Swift.Bool = true) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency public func setWifiInfo(name: Swift.String, password: Swift.String = "", wifiIndex: Swift.UInt32?, isConnected: Swift.Bool = false) + @objc deinit +} +public struct PlaudWifiInfo { + public init(name: Swift.String, password: Swift.String, isConnected: Swift.Bool, index: Swift.UInt32 = 0, rssi: Swift.Int32? = nil) +} +@_inheritsConvenienceInitializers @objc @_Concurrency.MainActor @preconcurrency public class PlaudWifiSettingPage : UIKit.UIViewController, PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol { + @_Concurrency.MainActor @preconcurrency public static func resetTempTestWifiIndex() + @_Concurrency.MainActor @preconcurrency @objc public func bleAppKeyState(result _: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncUrl(url: Swift.String) + @_Concurrency.MainActor @preconcurrency @objc public func blePenState(state _: Swift.Int, privacy _: Swift.Int, keyState _: Swift.Int, uDisk _: Swift.Int, findMyToken _: Swift.Int, hasSndpKey _: Swift.Int, deviceAccessToken _: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func bleConnectState(state: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncEnabled(_ value: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncListReceived(list: [Swift.UInt32]) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncConfigReceived(index: Swift.UInt32, ssid: Swift.String, password: Swift.String) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncConfigSet(result: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncDeleteResult(result _: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc public func onWifiSyncTestResult(index: Swift.UInt32, result: Swift.Int, rawCode _: Swift.Int) + @_Concurrency.MainActor @preconcurrency public func getWifiTestTips(result: Swift.Int) -> Swift.String + @_Concurrency.MainActor @preconcurrency @objc public func onWifiRssiRequestConfirmed(status: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func observeValue(forKeyPath keyPath: Swift.String?, of object: Any?, change _: [Foundation.NSKeyValueChangeKey : Any]?, context _: Swift.UnsafeMutableRawPointer?) + @objc deinit + @_Concurrency.MainActor @preconcurrency public func updateWifiListVisibility() + @_Concurrency.MainActor @preconcurrency public static func testWifiConnection(ssid: Swift.String, password: Swift.String, wifiIndex: Swift.UInt32?, edit: Swift.Bool, completion: @escaping (Swift.Bool, Swift.String) -> Swift.Void) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder) +} +extension PlaudDeviceBasicSDK.PlaudWifiSettingPage : UIKit.UITableViewDataSource, UIKit.UITableViewDelegate { + @_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_: UIKit.UITableView, numberOfRowsInSection _: Swift.Int) -> Swift.Int + @_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_: UIKit.UITableView, heightForRowAt _: Foundation.IndexPath) -> CoreFoundation.CGFloat + @_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, cellForRowAt indexPath: Foundation.IndexPath) -> UIKit.UITableViewCell + @_Concurrency.MainActor @preconcurrency @objc dynamic public func tableView(_ tableView: UIKit.UITableView, didSelectRowAt indexPath: Foundation.IndexPath) +} +extension Swift.Array { + public mutating func appendDistinct(contentsOf newElements: S, where condition: @escaping (Element, Element) -> Swift.Bool) where Element == S.Element, S : Swift.Sequence +} +extension UIKit.UIColor { + convenience public init(hex: Swift.UInt32) +} +public enum Model : Swift.String { + case simulator, iPod1, iPod2, iPod3, iPod4, iPod5, iPod6, iPod7, iPad2, iPad3, iPad4, iPadAir, iPadAir2, iPadAir3, iPadAir4, iPadAir5, iPad5, iPad6, iPad7, iPad8, iPad9, iPadMini, iPadMini2, iPadMini3, iPadMini4, iPadMini5, iPadMini6, iPadPro9_7, iPadPro10_5, iPadPro11, iPadPro2_11, iPadPro3_11, iPadPro12_9, iPadPro2_12_9, iPadPro3_12_9, iPadPro4_12_9, iPadPro5_12_9, iPhone4, iPhone4S, iPhone5, iPhone5S, iPhone5C, iPhone6, iPhone6Plus, iPhone6S, iPhone6SPlus, iPhoneSE, iPhone7, iPhone7Plus, iPhone8, iPhone8Plus, iPhoneX, iPhoneXS, iPhoneXSMax, iPhoneXR, iPhone11, iPhone11Pro, iPhone11ProMax, iPhoneSE2, iPhone12Mini, iPhone12, iPhone12Pro, iPhone12ProMax, iPhone13Mini, iPhone13, iPhone13Pro, iPhone13ProMax, iPhoneSE3, iPhone14, iPhone14Plus, iPhone14Pro, iPhone14ProMax, AppleWatch1, AppleWatchS1, AppleWatchS2, AppleWatchS3, AppleWatchS4, AppleWatchS5, AppleWatchSE, AppleWatchS6, AppleWatchS7, AppleTV1, AppleTV2, AppleTV3, AppleTV4, AppleTV_4K, AppleTV2_4K, unrecognized + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +extension UIKit.UIDevice { + @_Concurrency.MainActor @preconcurrency public var type: PlaudDeviceBasicSDK.Model { + get + } + @_Concurrency.MainActor @preconcurrency public static func getOSInfo() -> Swift.String +} +extension UIKit.UIViewController { + @_Concurrency.MainActor @preconcurrency public var isCurrentVisible: Swift.Bool { + get + } + @_Concurrency.MainActor @preconcurrency public func currentIS(_ vcClass: Swift.AnyClass) -> Swift.Bool + @_Concurrency.MainActor @preconcurrency public var currentVCClass: UIKit.UIViewController? { + get + } +} +extension UIKit.UINavigationController { + @_Concurrency.MainActor @preconcurrency public func pushViewController(_ viewController: UIKit.UIViewController, animated: Swift.Bool = true, completion: (() -> Swift.Void)? = nil) +} +extension Foundation.Date { + public var minSec: Swift.Int { + get + } + public var maxSec: Swift.Int { + get + } + public var formatyyyyMMdd: Swift.String { + get + } + public var yyyyMMddValue: Swift.Int { + get + } +} +extension Dispatch.DispatchTime : Swift.ExpressibleByIntegerLiteral { + public init(integerLiteral value: Swift.Int) + public typealias IntegerLiteralType = Swift.Int +} +extension Dispatch.DispatchTime : Swift.ExpressibleByFloatLiteral { + public init(floatLiteral value: Swift.Double) + public typealias FloatLiteralType = Swift.Double +} +extension Swift.Int { + public func loopRun(task: () -> Swift.Void) +} +extension Swift.Character { + public func intValue() -> Swift.Int +} +extension CoreFoundation.CGFloat { + public static func random(lower: CoreFoundation.CGFloat = 0, upper: CoreFoundation.CGFloat = 1) -> CoreFoundation.CGFloat +} +extension Swift.String { + public var local: Swift.String { + get + } + public var image: UIKit.UIImage? { + get + } + public func simpleEncrypt() -> Swift.String +} +extension Foundation.FileManager { + public func findFiles(path: Swift.String, filterTypes: [Swift.String]) -> [Swift.String] + public func fileSize(path: Swift.String) -> Swift.Int + public func folderSize(dir: Swift.String) -> Swift.Int + public func clearFolder(dir: Swift.String) + @discardableResult + public func createIfNotExist(atPath path: Swift.String) -> Swift.Bool + public func copyFile(filePath: Swift.String, withName newName: Swift.String) -> Swift.String? + public func copy(from orginPath: Swift.String, to targetPath: Swift.String, callback: @escaping (Swift.Bool) -> Swift.Void) +} +public protocol PresentBottomVCProtocol { + var controllerHeight: CoreFoundation.CGFloat { get } +} +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class PresentBottomVC : UIKit.UIViewController, PlaudDeviceBasicSDK.PresentBottomVCProtocol { + @_Concurrency.MainActor @preconcurrency public var controllerHeight: CoreFoundation.CGFloat { + get + } + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidDisappear(_ animated: Swift.Bool) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +public let PresentBottomHideKey: Swift.String +extension UIKit.UIViewController : UIKit.UIViewControllerTransitioningDelegate { + @_Concurrency.MainActor @preconcurrency public func presentBottom(_ vc: PlaudDeviceBasicSDK.PresentBottomVC) + @_Concurrency.MainActor @preconcurrency @objc dynamic public func presentationController(forPresented presented: UIKit.UIViewController, presenting: UIKit.UIViewController?, source: UIKit.UIViewController) -> UIKit.UIPresentationController? +} +public protocol WaveProtocol : ObjectiveC.NSObjectProtocol { + func onTimeChange(millisec: Swift.Int, end: Swift.Bool) +} +public protocol JXWaveformProtocol : ObjectiveC.NSObjectProtocol { + func onPlayOrPauseClick() + func onTimeChange(millisec: Swift.Int, end: Swift.Bool) + func onInfoClick() + func onShareClick() + func onStopRecordClick() +} +public enum SoundCategory { + case ambient + case soloAmbient + case playback + case record + case playAndRecord + public static func == (a: PlaudDeviceBasicSDK.SoundCategory, b: PlaudDeviceBasicSDK.SoundCategory) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +open class Sound { + public static var playersPerSound: Swift.Int { + get + set + } + public static var session: any PlaudDeviceBasicSDK.Session + public static var category: PlaudDeviceBasicSDK.SoundCategory { + get + set + } + public static var enabled: Swift.Bool { + get + set + } + public static var playerClass: any PlaudDeviceBasicSDK.Player.Type + public static var soundsBundle: Foundation.Bundle + public init?(url: Foundation.URL) + @objc deinit + @discardableResult + public func play(numberOfLoops: Swift.Int = 0, completion: PlaudDeviceBasicSDK.PlayerCompletion? = nil) -> Swift.Bool + public func stop() + public func pause() + @discardableResult + public func resume() -> Swift.Bool + public var playing: Swift.Bool { + get + } + public var paused: Swift.Bool { + get + } + @discardableResult + public func prepare() -> Swift.Bool + @discardableResult + public static func play(file: Swift.String, fileExtension: Swift.String? = nil, numberOfLoops: Swift.Int = 0) -> Swift.Bool + @discardableResult + public static func play(url: Foundation.URL, numberOfLoops: Swift.Int = 0) -> Swift.Bool + public static func stop(for url: Foundation.URL) + public var duration: Foundation.TimeInterval { + get + } + public var volume: Swift.Float { + get + set + } + public static func stop(file: Swift.String, fileExtension: Swift.String? = nil) + public static func stopAll() +} +public protocol Player : AnyObject { + func play(numberOfLoops: Swift.Int, completion: PlaudDeviceBasicSDK.PlayerCompletion?) -> Swift.Bool + func stop() + func pause() + func resume() + func prepareToPlay() -> Swift.Bool + init(contentsOf url: Foundation.URL) throws + var duration: Foundation.TimeInterval { get } + var volume: Swift.Float { get set } + var isPlaying: Swift.Bool { get } +} +public typealias PlayerCompletion = (Swift.Bool) -> Swift.Void +extension AVFAudio.AVAudioPlayer : PlaudDeviceBasicSDK.Player, AVFAudio.AVAudioPlayerDelegate { + public func play(numberOfLoops: Swift.Int, completion: PlaudDeviceBasicSDK.PlayerCompletion?) -> Swift.Bool + public func resume() + @objc dynamic public func audioPlayerDidFinishPlaying(_: AVFAudio.AVAudioPlayer, successfully flag: Swift.Bool) + @objc dynamic public func audioPlayerDecodeErrorDidOccur(_: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) +} +public protocol Session : AnyObject { + func setCategory(_ category: AVFAudio.AVAudioSession.Category) throws +} +extension AVFAudio.AVAudioSession : PlaudDeviceBasicSDK.Session { +} +@_hasMissingDesignatedInitializers @objc @_Concurrency.MainActor @preconcurrency public class PlaudAudioPlayerViewController : UIKit.UIViewController, AVFAudio.AVAudioPlayerDelegate { + @objc @_Concurrency.MainActor @preconcurrency public init(sessionId: Swift.Int) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewWillDisappear(_ animated: Swift.Bool) + @_Concurrency.MainActor @preconcurrency @objc public func audioPlayerDidFinishPlaying(_: AVFAudio.AVAudioPlayer, successfully flag: Swift.Bool) + @_Concurrency.MainActor @preconcurrency @objc public func audioPlayerDecodeErrorDidOccur(_: AVFAudio.AVAudioPlayer, error: (any Swift.Error)?) + @_Concurrency.MainActor @preconcurrency @objc public func audioPlayerBeginInterruption(_: AVFAudio.AVAudioPlayer) + @_Concurrency.MainActor @preconcurrency @objc public func audioPlayerEndInterruption(_: AVFAudio.AVAudioPlayer, withOptions _: Swift.Int) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class PlaudPCMPlayer : ObjectiveC.NSObject { + @objc public var isPlaying: Swift.Bool { + get + } + @objc public var isPaused: Swift.Bool { + get + } + @objc public var duration: Swift.Double { + get + } + @objc public var currentTime: Swift.Double { + get + } + @objc public var onPlaybackFinished: (() -> Swift.Void)? + @objc public var onError: ((Swift.String) -> Swift.Void)? + @objc override dynamic public init() + @objc deinit + @objc public func loadFile(path: Swift.String) -> Swift.Bool + @objc public func play() + @objc public func pause() + @objc public func stop() +} +public struct AnyCodable : Swift.Codable { + public let value: Any + public init(_ value: Any) + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +@_hasMissingDesignatedInitializers public class PlaudDomainManager { + public enum Region : Swift.String, Swift.CaseIterable { + case cn + case us + case jp + public init?(rawValue: Swift.String) + public typealias AllCases = [PlaudDeviceBasicSDK.PlaudDomainManager.Region] + public typealias RawValue = Swift.String + nonisolated public static var allCases: [PlaudDeviceBasicSDK.PlaudDomainManager.Region] { + get + } + public var rawValue: Swift.String { + get + } + } + public static let shared: PlaudDeviceBasicSDK.PlaudDomainManager + @objc deinit + @objc public func setCustomDomain(_ domain: Swift.String) + public func setAutoLanguageAssociation(_ enabled: Swift.Bool) + public func isAutoLanguageAssociationEnabled() -> Swift.Bool + public func setRegion(_ region: PlaudDeviceBasicSDK.PlaudDomainManager.Region) + public func setRegionForLanguage(_ languageCode: Swift.String) + public func getCurrentRegion() -> PlaudDeviceBasicSDK.PlaudDomainManager.Region + public func getCurrentDomain() -> Swift.String + public func getCurrentBaseURL() -> Swift.String + public func getDomain(for region: PlaudDeviceBasicSDK.PlaudDomainManager.Region) -> Swift.String + public func getBaseURL(for region: PlaudDeviceBasicSDK.PlaudDomainManager.Region) -> Swift.String + public func buildAPIURL(path: Swift.String) -> Swift.String + public func buildAPIURL(path: Swift.String, for region: PlaudDeviceBasicSDK.PlaudDomainManager.Region) -> Swift.String + public func buildAPIURL(path: Swift.String, for languageCode: Swift.String) -> Swift.String + public func getRegionForCurrentLanguage() -> PlaudDeviceBasicSDK.PlaudDomainManager.Region + public func getCurrentLanguageCode() -> Swift.String +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudFileUploader : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudFileUploader + @objc public var device: PlaudBleSDK.BleDevice? + public func checkRecordingExist(sessionId: Swift.Int) -> Swift.Bool + public func getDownloadedRecordingPath(sessionId: Swift.Int, desiredPath: Swift.String) -> Swift.String + @objc public func uploadRecording(sn: Swift.String, sessionId: Swift.Int, duration: Swift.Double, onProgress: @escaping (Swift.Double) -> Swift.Void, onSuccess: @escaping ([Swift.String : Any]) -> Swift.Void, onFailure: @escaping (any Swift.Error) -> Swift.Void) + @objc public func uploadLogFile(filePath: Swift.String, sn: Swift.String, onProgress: @escaping (Swift.Double) -> Swift.Void, onSuccess: @escaping ([Swift.String : Any]) -> Swift.Void, onFailure: @escaping (any Swift.Error) -> Swift.Void) + @objc public static func calculateSnType(sn: Swift.String) -> Swift.String + public func bindDevice(ownerId: Swift.String, sn: Swift.String, completion: @escaping (Swift.Result<[Swift.String : Any], any Swift.Error>) -> Swift.Void) + public func unbindDevice(ownerId: Swift.String, sn: Swift.String, completion: @escaping (Swift.Result<[Swift.String : Any], any Swift.Error>) -> Swift.Void) + @objc deinit +} +@_hasMissingDesignatedInitializers public class PlaudLocalizationManager { + public static let shared: PlaudDeviceBasicSDK.PlaudLocalizationManager + public func setCustomBundlePath(_ path: Swift.String) + public func setLanguage(_ language: Swift.String) + public func getCurrentLanguage() -> Swift.String + public func checkSDKBundle() -> Swift.Bool + public func localizedString(for key: Swift.String) -> Swift.String + @objc deinit +} +extension Swift.String { + public var plaudLocalized: Swift.String { + get + } +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudLogUploadManager : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudLogUploadManager + @objc deinit + @objc public func setAutoUploadEnabled(_ enabled: Swift.Bool) + @objc public func startAutoUpload() + @objc public func stopAutoUpload() + @objc public func uploadLogFiles(onProgress: @escaping (Swift.Double) -> Swift.Void, onSuccess: @escaping ([Swift.String : Any]) -> Swift.Void, onFailure: @escaping (any Swift.Error) -> Swift.Void) + @objc public func cleanupLogFiles() + @objc public func getUploadStatistics() -> [Swift.String : Any] + @objc public func uploadLogFilesWithDeviceSN(sn: Swift.String, onProgress: @escaping (Swift.Double) -> Swift.Void, onSuccess: @escaping ([Swift.String : Any]) -> Swift.Void, onFailure: @escaping (any Swift.Error) -> Swift.Void) + @objc public func uploadLogsAfterRecording(sn: Swift.String, sessionId: Swift.Int, onCompletion: @escaping (Swift.Bool, (any Swift.Error)?) -> Swift.Void) +} +@objc public enum PlaudLogUploadError : Swift.Int, Swift.Error { + case alreadyUploading = 0 + case directoryNotFound = 1 + case partialUpload = 2 + public var localizedDescription: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public static var _nsErrorDomain: Swift.String { + get + } + public var rawValue: Swift.Int { + get + } +} +public struct PlaudLogUploadPartialError : Swift.Error { + public let result: [Swift.String : Any] + public init(result: [Swift.String : Any]) + public var localizedDescription: Swift.String { + get + } +} +public struct PlaudPartnerSnSignRequest : Swift.Codable { + public let type: Swift.String + public let sn: Swift.String + public init(type: Swift.String, sn: Swift.String) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct PlaudPartnerSnSignResponse : Swift.Codable { + public let signature: Swift.String? + public init(signature: Swift.String?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct PlaudPartnerGenKeyResponse : Swift.Codable { + public let publicKey: Swift.String? + public let privateKey: Swift.String? + public init(publicKey: Swift.String?, privateKey: Swift.String?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct PlaudPartnerApiErrorResponse : Swift.Codable { + public let detail: Swift.String? + public init(detail: Swift.String?) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public enum PlaudPartnerApiError : Swift.Error, Foundation.LocalizedError { + case invalidParameter(Swift.String) + case noUserAccessToken + case invalidURL(Swift.String) + case invalidResponse + case unauthorized(detail: Swift.String?) + case serverError(code: Swift.Int, body: Swift.String?) + case requestEncodeFailed(any Swift.Error) + case responseDecodeFailed(any Swift.Error) + case networkError(any Swift.Error) + public var errorDescription: Swift.String? { + get + } +} +@_hasMissingDesignatedInitializers final public class PlaudPartnerApiManager { + public static let shared: PlaudDeviceBasicSDK.PlaudPartnerApiManager + final public func setUserAccessToken(_ token: Swift.String?) + final public func getUserAccessToken() -> Swift.String? + final public func signDeviceSn(deviceType: Swift.String, sn: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) + final public func generateRsaKeyPair(completion: @escaping (Swift.Result) -> Swift.Void) + @objc deinit +} +@_inheritsConvenienceInitializers @objc public class PlaudSDKLogger : ObjectiveC.NSObject { + @objc public static func logEvent(_ eventName: Swift.String, parameters: Foundation.NSDictionary? = nil) + @objc override dynamic public init() + @objc deinit +} +public enum WorkflowStatus : Swift.String, Swift.Codable { + case pending + case running + case progress + case success + case failure + case cancelled + case timeout + public var localizedDescription: Swift.String { + get + } + public var isFinished: Swift.Bool { + get + } + public var isSuccess: Swift.Bool { + get + } + public init(from decoder: any Swift.Decoder) throws + public init?(rawValue: Swift.String) + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } +} +public enum WorkflowTaskType : Swift.String, Swift.Codable, Swift.CaseIterable { + case audioTranscribe + case aiSummarize + case aiEtl + case audioMerge + case custom + case unknown + public var localizedDescription: Swift.String { + get + } + public init?(rawValue: Swift.String) + public typealias AllCases = [PlaudDeviceBasicSDK.WorkflowTaskType] + public typealias RawValue = Swift.String + nonisolated public static var allCases: [PlaudDeviceBasicSDK.WorkflowTaskType] { + get + } + public var rawValue: Swift.String { + get + } +} +public struct WorkflowTaskParams : Swift.Codable { + public let parameters: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public init(parameters: [Swift.String : Any]? = nil) + public init(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, extras: [Swift.String : Any] = [:]) + public init(etlType: Swift.String, extras: [Swift.String : Any] = [:]) + public init(fileIdList: [Swift.String], groupId: Swift.String) + public init(summaryType: Swift.String, extras: [Swift.String : Any] = [:]) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct WorkflowTask : Swift.Codable { + public let taskType: PlaudDeviceBasicSDK.WorkflowTaskType + public let taskParams: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public init(taskType: PlaudDeviceBasicSDK.WorkflowTaskType, parameters: [Swift.String : Any]? = nil) + public init(taskType: PlaudDeviceBasicSDK.WorkflowTaskType, taskParams: PlaudDeviceBasicSDK.WorkflowTaskParams) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct WorkflowMetadata : Swift.Codable { + public let organizationId: Swift.String? + public let ownerId: Swift.String? + public let deviceSn: Swift.String? + public let customData: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public init(organizationId: Swift.String? = nil, ownerId: Swift.String? = nil, deviceSn: Swift.String? = nil, customData: [Swift.String : Any]? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct WorkflowSubmitRequest : Swift.Codable { + public let workflows: [PlaudDeviceBasicSDK.WorkflowTask] + public let metadata: PlaudDeviceBasicSDK.WorkflowMetadata + public let version: Swift.String + public init(workflows: [PlaudDeviceBasicSDK.WorkflowTask], metadata: PlaudDeviceBasicSDK.WorkflowMetadata = WorkflowMetadata(), version: Swift.String = "1.0") + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct WorkflowSubmitResponse : Swift.Codable { + public let id: Swift.String + public let status: PlaudDeviceBasicSDK.WorkflowStatus + public var endTime: Swift.String? + public let updateTime: Swift.String? + public let fileId: Swift.String? + public let startTime: Swift.Int64? + public let version: Swift.String? + public let ownerId: Swift.String? + public let metadataJson: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let totalTasks: Swift.Int? + public let completedTasks: Swift.Int? + public let config: [PlaudDeviceBasicSDK.WorkflowTask]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct PartialWorkflowStatusResponse : Swift.Codable { + public let id: Swift.String? + public let status: Swift.String? + public let endTime: Swift.String? + public let updateTime: Swift.String? + public let fileId: Swift.String? + public let startTime: Swift.Int64? + public let version: Swift.String? + public let ownerId: Swift.String? + public let metadataJson: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let completedTasks: Swift.Int? + public let totalTasks: Swift.Int? + public let progress: Swift.Double? + public let message: Swift.String? + public let estimatedCompletionTime: Swift.String? + public let taskStatuses: [Swift.String : Swift.String]? + public let config: [PlaudDeviceBasicSDK.AnyCodable]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct WorkflowStatusResponse : Swift.Codable { + public let id: Swift.String + public let status: PlaudDeviceBasicSDK.WorkflowStatus + public let endTime: Swift.String? + public let updateTime: Swift.String? + public let fileId: Swift.String? + public let startTime: Swift.Int64? + public let version: Swift.String? + public let ownerId: Swift.String? + public let metadataJson: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let completedTasks: Swift.Int? + public let totalTasks: Swift.Int? + public let progress: Swift.Double? + public let message: Swift.String? + public let estimatedCompletionTime: Swift.String? + public let taskStatuses: [Swift.String : PlaudDeviceBasicSDK.WorkflowStatus]? + public let config: [PlaudDeviceBasicSDK.WorkflowTask]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct TranscriptSegment : Swift.Codable { + public let start: Swift.Double + public let end: Swift.Double + public let speaker: Swift.String + public let text: Swift.String + public let index: Swift.Int? + public init(start: Swift.Double, end: Swift.Double, speaker: Swift.String, text: Swift.String, index: Swift.Int? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct TranscriptResult : Swift.Codable { + public let segments: [PlaudDeviceBasicSDK.TranscriptSegment] + public let embeddings: [Swift.String : [Swift.Double]]? + public let status: Swift.Int? + public init(segments: [PlaudDeviceBasicSDK.TranscriptSegment], embeddings: [Swift.String : [Swift.Double]]? = nil, status: Swift.Int? = nil) + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public var allSpeakers: [Swift.String] { + get + } + public var totalDuration: Foundation.TimeInterval { + get + } + public var textBySpeaker: [Swift.String : Swift.String] { + get + } + public var allText: Swift.String { + get + } + public var hasEmbeddings: Swift.Bool { + get + } + public func getEmbeddings(for speaker: Swift.String) -> [Swift.Double]? +} +public struct CommunicationFeedback : Swift.Codable { + public let highlight: Swift.String? + public let suggestion: Swift.String? + public init(highlight: Swift.String? = nil, suggestion: Swift.String? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct DealIntention : Swift.Codable { + public let description: Swift.String? + public let rating: Swift.String? + public init(description: Swift.String? = nil, rating: Swift.String? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct DealReason : Swift.Codable { + public let description: Swift.String? + public let reason: [Swift.String]? + public init(description: Swift.String? = nil, reason: [Swift.String]? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct NoDealReason : Swift.Codable { + public let description: Swift.String? + public let suggestion: Swift.String? + public let reason: [Swift.String]? + public init(description: Swift.String? = nil, suggestion: Swift.String? = nil, reason: [Swift.String]? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct DealAnalysis : Swift.Codable { + public let status: Swift.String? + public let intention: PlaudDeviceBasicSDK.DealIntention? + public let dealReason: PlaudDeviceBasicSDK.DealReason? + public let noDealReason: PlaudDeviceBasicSDK.NoDealReason? + public init(status: Swift.String? = nil, intention: PlaudDeviceBasicSDK.DealIntention? = nil, dealReason: PlaudDeviceBasicSDK.DealReason? = nil, noDealReason: PlaudDeviceBasicSDK.NoDealReason? = nil) + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AIEtlResult : Swift.Codable { + public let assessmentTreatmentPairs: [PlaudDeviceBasicSDK.AnyCodable]? + public let appellation: Swift.String? + public let communicationFeedback: PlaudDeviceBasicSDK.CommunicationFeedback? + public let clinicalReport: Swift.String? + public let mapped: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let transcription: PlaudDeviceBasicSDK.TranscriptResult? + public let summary: Swift.String? + public let customerProjects: [PlaudDeviceBasicSDK.AnyCodable]? + public let unmapped: [PlaudDeviceBasicSDK.AnyCodable]? + public let dealAnalysis: PlaudDeviceBasicSDK.DealAnalysis? + public let doctorProjects: [PlaudDeviceBasicSDK.AnyCodable]? + public let content: Swift.String? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public struct AISummaryResult : Swift.Codable { + public let summary: Swift.String? + public let keyPoints: [Swift.String]? + public let actionItems: [Swift.String]? + public let participants: [Swift.String]? + public let duration: Swift.String? + public let template: Swift.String? + public let model: Swift.String? + public let content: Swift.String? + public let status: Swift.String? + public let result: PlaudDeviceBasicSDK.AISummaryInnerResult? + public let text: Swift.String? + public init(from decoder: any Swift.Decoder) throws + public init(summary: Swift.String?, keyPoints: [Swift.String]?, actionItems: [Swift.String]?, participants: [Swift.String]?, duration: Swift.String?, template: Swift.String?, model: Swift.String?, content: Swift.String?, status: Swift.String?, result: PlaudDeviceBasicSDK.AISummaryInnerResult?, text: Swift.String?) + public var extractedSummary: Swift.String? { + get + } + public var extractedKeyPoints: [Swift.String]? { + get + } + public var extractedActionItems: [Swift.String]? { + get + } + public var extractedParticipants: [Swift.String]? { + get + } + public var extractedModel: Swift.String? { + get + } + public var extractedLanguage: Swift.String? { + get + } + public var extractedMarkdown: Swift.String? { + get + } + public func encode(to encoder: any Swift.Encoder) throws +} +public struct AISummaryInnerResult : Swift.Codable { + public let status: Swift.String? + public let result: PlaudDeviceBasicSDK.AISummaryDetailedResult? + public let text: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryDetailedResult : Swift.Codable { + public let summaryId: Swift.String? + public let selectPromptType: Swift.String? + public let speakerMapping: [Swift.String]? + public let usePersona: Swift.Bool? + public let version: Swift.String? + public let tokensLens: Swift.Int? + public let retryCount: Swift.Int? + public let header: PlaudDeviceBasicSDK.AISummaryHeader? + public let summary: Swift.String? + public let aiSuggestion: Swift.String? + public let language: Swift.String? + public let markdown: Swift.String? + public let form: PlaudDeviceBasicSDK.AISummaryForm? + public let endpoint: Swift.String? + public let contents: [PlaudDeviceBasicSDK.AISummaryContent]? + public let model: Swift.String? + public let textLens: Swift.Int? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryHeader : Swift.Codable { + public let category: Swift.String? + public let industryCategory: Swift.String? + public let languageCode: Swift.String? + public let keywords: [Swift.String]? + public let recommendQuestions: [PlaudDeviceBasicSDK.AISummaryQuestion]? + public let summaryType: Swift.String? + public let originalCategory: Swift.String? + public let summaryId: Swift.String? + public let headline: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryQuestion : Swift.Codable { + public let question: Swift.String? + public let category: Swift.String? + public let mainPurpose: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryForm : Swift.Codable { + public let arrangements: Swift.String? + public let info: Swift.String? + public let location: Swift.String? + public let aiSuggestions: Swift.String? + public let insertMore: Swift.String? + public let notes: Swift.String? + public let conclusion: Swift.String? + public let dateTime: Swift.String? + public let attendees: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryContent : Swift.Codable { + public let speakerNameMapping: [Swift.String]? + public let arrangements: [Swift.String]? + public let topics: [PlaudDeviceBasicSDK.AISummaryTopic]? + public let theme: Swift.String? + public let aiSuggestion: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct AISummaryTopic : Swift.Codable { + public let topic: Swift.String? + public let conclusion: Swift.String? + public let description: Swift.String? + public func encode(to encoder: any Swift.Encoder) throws + public init(from decoder: any Swift.Decoder) throws +} +public struct PartialWorkflowResultResponse : Swift.Codable { + public let id: Swift.String? + public let status: Swift.String? + public let metadata: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let results: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let taskResults: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let completedAt: Swift.String? + public let duration: Swift.Double? + public let message: Swift.String? + public let progress: Swift.Double? + public let estimatedCompletionTime: Swift.String? + public let taskStatuses: [Swift.String : Swift.String]? + public let tasks: [PlaudDeviceBasicSDK.AnyCodable]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws +} +public enum WorkflowResult { + case success(T) + case failure(any Swift.Error) +} +public enum WorkflowError : Swift.Error, Foundation.LocalizedError { + case invalidURL + case networkError(any Swift.Error) + case invalidResponse + case serverError(Swift.String) + case workflowNotFound + case workflowFailed(Swift.String) + case timeout + case noApiToken + case urlBuildFailed(Swift.String) + public var errorDescription: Swift.String? { + get + } +} +@_hasMissingDesignatedInitializers public class PlaudWorkflowManager { + public static let shared: PlaudDeviceBasicSDK.PlaudWorkflowManager + public func submitWorkflow(_ request: PlaudDeviceBasicSDK.WorkflowSubmitRequest, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func getWorkflowStatus(_ workflowId: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func getWorkflowResults(_ workflowId: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func submitAndWaitForCompletion(_ request: PlaudDeviceBasicSDK.WorkflowSubmitRequest, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func pollWorkflowStatus(workflowId: Swift.String, timeout: Foundation.TimeInterval, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + @objc deinit +} +extension PlaudDeviceBasicSDK.PlaudWorkflowManager { + public func createAudioTranscribeWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func createAIEtlWorkflow(etlType: Swift.String, extras: [Swift.String : Any] = [:], completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func createAudioMergeWorkflow(fileIdList: [Swift.String], groupId: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func createTranscribeAndAnalysisWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, etlType: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func createMergeAndAnalysisWorkflow(fileIdList: [Swift.String], groupId: Swift.String, etlType: Swift.String, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doAudioTranscribeWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doTranscribeAndAnalysisWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, etlType: Swift.String, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doTranscribeAndAISummaryWorkflow(fileId: Swift.String, language: Swift.String = "en", diarization: Swift.Bool = true, transcriptType: Swift.String? = nil, templateId: Swift.String = "MEETING", prompt: Swift.String? = nil, model: Swift.String = "openai", startTime: Swift.Int = 0, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doAudioMergeWorkflow(fileIdList: [Swift.String], groupId: Swift.String, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) + public func doMergeAndAnalysisWorkflow(fileIdList: [Swift.String], groupId: Swift.String, etlType: Swift.String, timeout: Foundation.TimeInterval = 3600.0, progressHandler: ((PlaudDeviceBasicSDK.WorkflowStatusResponse) -> Swift.Void)? = nil, completion: @escaping (PlaudDeviceBasicSDK.WorkflowResult) -> Swift.Void) +} +@_hasMissingDesignatedInitializers public class PlaudWorkflowManagerTest { + public static func runCompleteWorkflowTest() + public static func testAudioTranscribeWorkflow(fileId: Swift.String) + public static func testAIEtlWorkflow() + public static func testTranscribeAndAnalysisWorkflow(fileId: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) + public static func testAudioMergeWorkflow(fileIdList: [Swift.String]) + public static func testMergeAndAnalysisWorkflow(fileId: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) + public static func testCustomWorkflow() + public static func testJSONParsingFix() + public static func testDoAudioTranscribeWorkflow(fileId: Swift.String) + public static func testURLBuilding() + public static func testWorkflowStatusResponseParsing() + public static func testNewWorkflowResultResponseParsing() + public static func testWorkflowResultResponseWithAIEtl() + public static func testTranscribeAndAISummaryWorkflow() + public static func testWorkflowResultResponseWithComplexAISummary() + public static func pollWorkflowCompletion(workflowId _: Swift.String, description: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void = { _ in }) + @objc deinit +} +@_hasMissingDesignatedInitializers public class PlaudWorkflowManagerExample { + public static func runAllExamples() + public static func simpleTranscribeExample() + public static func batchProcessingExample() + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class TestAgent : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.TestAgent + @objc public func testFunc() -> Swift.String + @objc deinit +} +public struct WorkflowResultResponse : Swift.Codable { + public let id: Swift.String + public let status: Swift.String + public let ownerId: Swift.String? + public let metadataJson: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let fileId: Swift.String? + public let tasks: [PlaudDeviceBasicSDK.WorkflowTaskResult] + public let metadata: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let results: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let taskResults: [Swift.String : PlaudDeviceBasicSDK.AnyCodable]? + public let completedAt: Swift.String? + public let duration: Swift.Double? + public let message: Swift.String? + public let progress: Swift.Double? + public let estimatedCompletionTime: Swift.String? + public let taskStatuses: [Swift.String : Swift.String]? + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public var legacyResults: [Swift.String : Any]? { + get + } + public var legacyTaskResults: [Swift.String : Any]? { + get + } + public var legacyCompletedAt: Swift.String? { + get + } + public var legacyDuration: Foundation.TimeInterval? { + get + } + public var legacyProgress: Swift.Double? { + get + } + public var legacyMessage: Swift.String? { + get + } + public var legacyEstimatedCompletionTime: Swift.String? { + get + } + public var legacyTaskStatuses: [Swift.String : Swift.String]? { + get + } + public var firstTranscriptResult: PlaudDeviceBasicSDK.TranscriptResult? { + get + } + public var firstAIEtlResult: PlaudDeviceBasicSDK.AIEtlResult? { + get + } + public var firstAISummaryResult: PlaudDeviceBasicSDK.AISummaryResult? { + get + } + public var allTranscriptText: Swift.String { + get + } + public var transcriptBySpeaker: [Swift.String : Swift.String] { + get + } + public var transcriptTask: PlaudDeviceBasicSDK.WorkflowTaskResult? { + get + } + public var aiEtlTask: PlaudDeviceBasicSDK.WorkflowTaskResult? { + get + } + public var aiSummaryTask: PlaudDeviceBasicSDK.WorkflowTaskResult? { + get + } + public var transcriptDuration: Swift.Int64? { + get + } + public var aiEtlDuration: Swift.Int64? { + get + } + public var aiSummaryDurationSeconds: Swift.Double? { + get + } + public var transcriptDurationSeconds: Swift.Double? { + get + } + public var aiEtlDurationSeconds: Swift.Double? { + get + } + public var isSuccess: Swift.Bool { + get + } + public var segmentCount: Swift.Int { + get + } + public var allSpeakers: [Swift.String] { + get + } + public var speakers: [Swift.String] { + get + } + public var transcriptTotalDuration: Foundation.TimeInterval { + get + } + public var aiEtlSummary: Swift.String? { + get + } + public var aiSummaryText: Swift.String? { + get + } + public var aiSummaryKeyPoints: [Swift.String]? { + get + } + public var aiSummaryActionItems: [Swift.String]? { + get + } + public var aiSummaryParticipants: [Swift.String]? { + get + } + public var aiSummaryTemplate: Swift.String? { + get + } + public var aiSummaryModel: Swift.String? { + get + } + public var aiSummaryDuration: Swift.String? { + get + } + public var aiSummaryHeadline: Swift.String? { + get + } + public var aiSummaryTopics: [PlaudDeviceBasicSDK.AISummaryTopic]? { + get + } + public var clinicalReport: Swift.String? { + get + } + public var dealStatus: Swift.String? { + get + } + public var dealIntentionRating: Swift.String? { + get + } + public var communicationHighlight: Swift.String? { + get + } + public var communicationSuggestion: Swift.String? { + get + } + public var customerAppellation: Swift.String? { + get + } + public var hasAIEtlTask: Swift.Bool { + get + } + public var hasAISummaryTask: Swift.Bool { + get + } + public var hasTranscriptTask: Swift.Bool { + get + } + public var taskTypes: [Swift.String] { + get + } + public var embeddingsData: [Swift.String : [Swift.Double]]? { + get + } + public var hasEmbeddings: Swift.Bool { + get + } + public var transcriptStatusCode: Swift.Int? { + get + } +} +public struct WorkflowTaskResult : Swift.Codable { + public let taskId: Swift.String + public let taskType: Swift.String + public let status: Swift.String + public let startTime: Swift.Int64? + public let endTime: Swift.Int64? + public let result: PlaudDeviceBasicSDK.AnyCodable? + public init(taskId: Swift.String, taskType: Swift.String, status: Swift.String, startTime: Swift.Int64?, endTime: Swift.Int64?, result: PlaudDeviceBasicSDK.AnyCodable?) + public init(from decoder: any Swift.Decoder) throws + public func encode(to encoder: any Swift.Encoder) throws + public func debugPrintTaskResult() + public var transcriptResult: PlaudDeviceBasicSDK.TranscriptResult? { + get + } + public var aiEtlResult: PlaudDeviceBasicSDK.AIEtlResult? { + get + } + public var aiSummaryResult: PlaudDeviceBasicSDK.AISummaryResult? { + get + } +} +public enum WorkflowParsingError : Swift.Error, Foundation.LocalizedError { + case missingRequiredField(Swift.String) + case invalidDataStructure(Swift.String) + case unsupportedFormat(Swift.String) + public var errorDescription: Swift.String? { + get + } +} +@_inheritsConvenienceInitializers @objc public class AudioFileDecryptor : ObjectiveC.NSObject { + @objc public static func decryptAudioFile(inputPath: Swift.String, privateKeyPem: Swift.String, outputPath: Swift.String? = nil) throws -> Swift.String + public static func decryptAudioToOgg(inputPath: Swift.String, privateKeyPem: Swift.String, outputPath: Swift.String? = nil) throws -> Swift.String? + @objc public static func isFileEncrypted(path: Swift.String) -> Swift.Bool + @objc public static func getHeader(path: Swift.String) -> PlaudDeviceBasicSDK.PlaudEncryptHeader? + @objc override dynamic public init() + @objc deinit +} +@objc public enum AudioDecryptorError : Swift.Int, Swift.Error { + case invalidHeader = 1 + case invalidSymmetricKey = 2 + case noEncryptedData = 3 + case decryptionFailed = 4 + public var localizedDescription: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public static var _nsErrorDomain: Swift.String { + get + } + public var rawValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers public class ChaCha20 { + public static func decrypt(data: Foundation.Data, key: Foundation.Data, nonce: Foundation.Data, counter: Swift.UInt32 = 0) throws -> Foundation.Data + @objc deinit +} +public enum ChaCha20Error : Swift.Error { + case invalidKeyLength + case invalidNonceLength + public static func == (a: PlaudDeviceBasicSDK.ChaCha20Error, b: PlaudDeviceBasicSDK.ChaCha20Error) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +extension PlaudDeviceBasicSDK.ChaCha20 { + public static func verifyRFC7539TestVector() -> Swift.Bool +} +@_inheritsConvenienceInitializers @objc public class OggOpusParser : ObjectiveC.NSObject { + @objc public static func resetDecoder() + @objc public var parsedSampleRate: Swift.Int { + @objc get + } + @objc public var parsedChannels: Swift.Int { + @objc get + } + @objc public var parsedPreSkip: Swift.Int { + @objc get + } + @objc public func parse(_ oggData: Foundation.Data) -> [Foundation.Data] + @objc override dynamic public init() + @objc deinit +} +@objc public enum PlaudDownloadFormat : Swift.Int { + case pcm = 0 + @available(*, unavailable, message: "MP3 format is not supported") + case mp3 = 1 + case wav = 2 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objc public enum AudioExportFormat : Swift.Int { + case pcm = 0 + case mp3 = 1 + case wav = 2 + case opus = 3 + public var fileExtension: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objc public protocol AudioExportCallback { + @objc func onProgress(_ progress: Swift.Int, message: Swift.String) + @objc func onComplete(outputPath: Swift.String) + @objc func onError(_ error: Swift.String) +} +@_inheritsConvenienceInitializers @objc public class PlaudBleDevice : PlaudBleSDK.BleDevice { + @objc override public init(sn: Swift.String) + override public init(peripheral: CoreBluetooth.CBPeripheral, rssi: Foundation.NSNumber, manufacturerData: Foundation.Data, localName: Swift.String?) + @objc deinit +} +@objc public protocol PlaudDeviceAgentProtocol { + @objc optional func bleAppKeyState(result: 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) + @objc optional func bleDeviceName(name: Swift.String?) + @objc optional func bleScanResult(bleDevices: [PlaudBleSDK.BleDevice]) + @objc optional func bleScanOverTime() + @objc optional func bleConnectState(state: Swift.Int) + @objc optional func bleBind(sn: Swift.String?, status: Swift.Int, protVersion: Swift.Int, timezone: Swift.Int) + @objc optional func bleMicGain(_ value: Swift.Int) + @objc optional func bleStorage(total: Swift.Int, free: Swift.Int, duration: Swift.Int) + @objc optional func blePowerChange(power: Swift.Int, oldPower: Swift.Int) + @objc optional func bleChargingState(isCharging: Swift.Bool, level: Swift.Int) + @objc optional func bleFileList(bleFiles: [PlaudBleSDK.BleFile]) + @objc optional func bleRecordStart(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int, reason: Swift.Int) + @objc optional func bleRecordStop(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int) + @objc optional func bleRecordPause(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int) + @objc optional func bleRecordResume(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int) + @objc optional func bleSyncFileHead(sessionId: Swift.Int, status: Swift.Int) + @objc optional func bleSyncFileTail(sessionId: Swift.Int, crc: Swift.Int) + @objc optional func bleData(sessionId: Swift.Int, start: Swift.Int, data: Foundation.Data) + @objc optional func blePcmData(sessionId: Swift.Int, millsec: Swift.Int, pcmData: Foundation.Data, isMusic: Swift.Bool) + @objc optional func bleDataComplete() + @objc optional func bleDecodeFail(start: Swift.Int) + @objc optional func bleSyncFileStop() + @objc optional func bleDownloadFile(sessionId: Swift.Int, desiredOutputPath: Swift.String, status: Swift.Int, progress: Swift.Int, tips: Swift.String) + @objc optional func bleDownloadFileStop() + @objc optional func bleDeleteFile(sessionId: Swift.Int, status: Swift.Int) + @objc optional func bleDepair(_ status: Swift.Int) + @objc optional func onWifiSyncConfigReceived(index: Swift.UInt32, ssid: Swift.String, password: Swift.String) + @objc optional func onWifiSyncConfigSet(result: Swift.Int) + @objc optional func onWifiSyncListReceived(list: [Swift.UInt32]) + @objc optional func onWifiSyncDeleteResult(result: Swift.Int) + @objc optional func onWifiSyncTestStarted(index: Swift.UInt32) + @objc optional func onWifiSyncWillStart(seconds: Swift.Int) + @objc optional func onWifiSyncTestResult(index: Swift.UInt32, result: Swift.Int, rawCode: Swift.Int) + @objc optional func onWifiSyncUrl(url: Swift.String) + @objc optional func onWifiRssiRequestConfirmed(status: Swift.Int) + @objc optional func onSdkFetchPermissionResult(pass: Swift.Bool, tips: Swift.String) + @objc optional func onSdkCheckPermissionResult(pass: Swift.Bool, tips: Swift.String) + @objc optional func onSdkCheckResourceResult(pass: Swift.Bool, tips: Swift.String) + @objc optional func onWifiSyncEnabled(_ value: Swift.Int) + @objc optional func onCommonMsgChannel(type: Swift.Int, value: Swift.Int, tips: Swift.String) + @objc optional func bleWiFiOpen(_ status: Swift.Int, _ wifiName: Swift.String, _ wholeName: Swift.String, _ wifiPass: Swift.String) + @objc optional func bleFotaResult(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?) + @objc optional func bleFotaPackReq(uid: Swift.Int, start: Swift.Int, end: Swift.Int) + @objc optional func bleFotaPackFin(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?) + @objc optional func bleOtaDataSendFail() + @objc optional func bleSetActive(status: Swift.Int) + @objc optional func bleCommonSetting(setting: Swift.Int) + @objc optional func bleRate(lossRate: Swift.Double, rate: Swift.Int, instantRate: Swift.Int) +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudDeviceAgent : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudDeviceAgent + public var bleAgent: PlaudBleSDK.BleAgent? + @objc public var recentConnectDevice: PlaudBleSDK.BleDevice? + @objc public var sceneFlag: Swift.Int { + get + } + @objc public var isWiFiTransferActive: Swift.Bool { + get + } + @objc public var skipPermissionCheck: Swift.Bool + @objc weak public var delegate: (any PlaudDeviceBasicSDK.PlaudDeviceAgentProtocol)? { + @objc get + @objc set + } + @objc deinit + @objc public func initSDK(userAccessToken: Swift.String, customDomain: Swift.String, extra: [Swift.String : Swift.String] = [:]) + @objc public func initSDK(hostName: Swift.String, appKey: Swift.String, appSecret: Swift.String, bindToken: Swift.String = "", extra: [Swift.String : Swift.String] = [:], customDomain: Swift.String? = nil, partnerToken: Swift.String? = nil) + @objc public func setUserAccessToken(_ token: Swift.String?) + @available(*, deprecated, renamed: "setUserAccessToken") + @objc public func setPartnerToken(_ token: Swift.String?) + public func getPartnerApiManager() -> PlaudDeviceBasicSDK.PlaudPartnerApiManager + @objc public func isPartnerDataReady() -> Swift.Bool + @objc public static func getTestAppKey(_ beta: Swift.Bool = false) -> Swift.String + @objc public static func getTestAppSecret(_ beta: Swift.Bool = false) -> Swift.String + @objc public func depair(clear: Swift.Bool = false) + @objc public func setDeviceWiFi(open: Swift.Bool) + @objc public func endWiFiTransfer() + @objc public func setDeviceBinding(token: Swift.String) + @objc public func startScan() + @objc public func stopScan() + @objc public func isConnected() -> Swift.Bool + @objc public func connectBleDevice(bleDevice: PlaudBleSDK.BleDevice, deviceToken: Swift.String) + @objc public func connectBleDevice(bleDevice: PlaudBleSDK.BleDevice) + @objc public func disconnect() + @objc public func tryReconnectLastDevice() + @objc public func getState() + @objc public func getStorage() + @objc public func getWifiSyncEnable() + @objc public func setWifiSyncEnable(value: Swift.Int) + @objc public func setWifiSyncTest(wifiIndex: Swift.UInt32) + @objc public func getWifiSyncTestResult(wifiIndex: Swift.UInt32) + @objc public func getChargingState() + @objc public func setMicGain(value: Swift.Int) + @objc public func readMicGain() + @objc public func setUDiskMode(onOff: Swift.Bool) + @objc public func checkIsRecording() -> Swift.Bool + @objc public func checkIsDownloading() -> Swift.Bool + @objc public func startRecord() + @objc public func setDeviceActive(status: Swift.Int) + @objc public func stopRecord() + @objc public func setDeviceName(_ name: Swift.String) + @objc public func getCurrentSessionID() -> Swift.Int + @objc public func pauseRecord() + @objc public func resumeRecord() + @objc public func getFileList(startSessionId: Swift.Int) + @objc public func getFile(sessionId: Swift.Int) + @objc public func syncFile(sessionId: Swift.Int, start: Swift.Int, end: Swift.Int) + @objc public func downloadFile(sessionId: Swift.Int, desiredOutputPath: Swift.String, format: PlaudDeviceBasicSDK.PlaudDownloadFormat = .wav) + @objc public func stopDownloadFile() + @objc public func exportAudio(sessionId: Swift.Int, outputDir: Swift.String, format: PlaudDeviceBasicSDK.AudioExportFormat, channels: Swift.Int = 1, callback: any PlaudDeviceBasicSDK.AudioExportCallback) + public static func getSupportedExportFormats() -> [PlaudDeviceBasicSDK.AudioExportFormat] + @objc public func stopSyncFile() + @objc public func deleteFile(sessionId: Swift.Int) + @objc public func clearAllFiles() + @objc public func restoreFactory() + @objc public func getWifiSyncConfig(wifiIndex: Swift.UInt32) + @objc public func setWifiSyncConfig(operation: Swift.Int, wifiIndex: Swift.UInt32, ssid: Swift.String, password: Swift.String) + @objc public func getWifiSyncList() + @objc public func deleteWifiSyncConfig(wifiIndices: [Swift.UInt32]) +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent : PlaudBleSDK.BleAgentProtocol { + @objc dynamic public func bleScanResult(bleDevices: [PlaudBleSDK.BleDevice]) + @objc dynamic public func bleScanOverTime() + @objc dynamic public func bleAppKeyState(result: Swift.Int) + @objc dynamic public func bleConnectState(state: Swift.Int) + @objc dynamic public func bleBind(sn: Swift.String?, status: Swift.Int, protVersion: Swift.Int, timezone: Swift.Int) + @objc dynamic public 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 dynamic public func bleStorage(total: Swift.Int, free: Swift.Int, duration: Swift.Int) + @objc dynamic public func blePowerChange(power: Swift.Int, oldPower: Swift.Int) + @objc dynamic public func bleChargingState(isCharging: Swift.Bool, level: Swift.Int) + @objc dynamic public func bleFileList(bleFiles: [PlaudBleSDK.BleFile]) + @objc dynamic public func bleDataComplete() + @objc dynamic public func bleRecordStart(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int) + @objc dynamic public func bleRecordStop(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int) + @objc dynamic public func bleRecordPause(sessionId: Swift.Int, reason: Swift.Int, fileExist: Swift.Bool, fileSize: Swift.Int) + @objc dynamic public func bleRecordResume(sessionId: Swift.Int, start: Swift.Int, status: Swift.Int, scene: Swift.Int, startTime: Swift.Int) + @objc dynamic public func bleSyncFileHead(sessionId: Swift.Int, status: Swift.Int) + @objc dynamic public func bleSyncFileTail(sessionId: Swift.Int, crc: Swift.Int) + @objc dynamic public func bleData(sessionId: Swift.Int, start: Swift.Int, data: Foundation.Data) + @objc dynamic public func blePcmData(sessionId: Swift.Int, millsec: Swift.Int, pcmData: Foundation.Data, isMusic: Swift.Bool) + @objc dynamic public func bleDecodeFail(start: Swift.Int) + @objc dynamic public func bleSyncFileStop() + @objc dynamic public func bleDeleteFile(sessionId: Swift.Int, status: Swift.Int) + @objc dynamic public func bleDepair(_ status: Swift.Int) + @objc dynamic public func bleMicGain(_ value: Swift.Int) + @objc dynamic public func onSyncIdleWifiConfigReceived(index: Swift.UInt32, ssid: Swift.String, password: Swift.String) + @objc dynamic public func onSyncIdleWifiConfigSet(result: Swift.Int) + @objc dynamic public func onSyncIdleWifiListReceived(list: [Swift.UInt32]) + @objc dynamic public func onSyncIdleWifiDeleteResult(result: Swift.Int) + @objc dynamic public func onSyncIdleWifiTestStarted(index: Swift.UInt32) + @objc dynamic public func onSyncIdleWillStart(seconds: Swift.Int) + @objc dynamic public func onSyncIdleWifiTestResult(index: Swift.UInt32, result: Swift.Int, rawCode: Swift.Int) + public func onWifiRssiRequestConfirmed(status: Swift.Int) + @objc dynamic public func bleSyncWhenIdleEnabled(_ value: Swift.Int) + @objc dynamic public func bleUDiskErr(funcName: Swift.String) + @objc dynamic public func bleWiFiOpen(_ status: Swift.Int, _ wifiName: Swift.String, _ wholeName: Swift.String, _ wifiPass: Swift.String) + @objc dynamic public func bleDeviceName(name: Swift.String?) + @objc dynamic public func bleFotaResult(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?) + @objc dynamic public func bleFotaPackReq(uid: Swift.Int, start: Swift.Int, end: Swift.Int) + @objc dynamic public func bleFotaPackFin(uid: Swift.Int, status: Swift.Int, errmsg: Swift.String?) + @objc dynamic public func bleOtaDataSendFail() + @objc dynamic public func bleRate(lossRate: Swift.Double, rate: Swift.Int, instantRate: Swift.Int) + @objc dynamic public func bleSetActive(status: Swift.Int) + public func bleCommonSetting(_ setting: Swift.Int) + @objc dynamic public func bleHeartbeat(status: Swift.Int) + @objc dynamic public func bleBatteryMode(_ mode: Swift.Int) + @objc dynamic public func bleDeviceStatus(status: [Swift.UInt8]) + @objc dynamic public func bleNewFeature(data: Foundation.Data) + @objc dynamic public func bleGetRecordMarkingTags(uid: Swift.Int, totals: Swift.Int, index: Swift.Int, tags: [PlaudBleSDK.BleRecordMarkingTag]) + @objc dynamic public func deviceLogData(start: Swift.Int, data: Foundation.Data, logType: Swift.Int) + @objc dynamic public func onGetDeviceLogList(data: Foundation.Data) + @objc dynamic public func onSyncDeviceLogStart(data: Foundation.Data) + @objc dynamic public func onSyncDeviceLogStop() + @objc dynamic public func onSyncDeviceLogEnd(data: Foundation.Data) + @objc dynamic public func onDeviceLogDeleted(data: Foundation.Data) + @objc dynamic public func bleUpdatePowerLowErr() + @objc dynamic public func bleDeviceDisconnectErr() + @objc dynamic public func bleState(powered: Swift.Bool) + @objc dynamic public func bleHandshakeWait(timeout: Swift.Int) + @objc dynamic public func blePenTime(stamp: Swift.Int, timezone: Swift.Int, zoneMin: Swift.Int) + @objc dynamic public func blePasswordReset(password: Swift.Int) + @objc dynamic public func bleBacklightDuration(_ duration: Swift.Int) + @objc dynamic public func bleBacklightBright(_ bright: Swift.Int) + @objc dynamic public func bleLanguage(_ type: Swift.Int) + @objc dynamic public func bleRecScene(_ scene: Swift.Int) + @objc dynamic public func bleRecMode(_ mode: Swift.Int) + @objc dynamic public func bleVadSensitivity(_ value: Swift.Int) + @objc dynamic public func bleVpuGain(_ value: Swift.Int) + @objc dynamic public func bleSwitchHandler(_ id: Swift.Int) + @objc dynamic public func bleAutoPowerOff(_ value: Swift.Int) + @objc dynamic public func bleRawWaveEnabled(_ value: Swift.Int) + @objc dynamic public func bleRecordingAfterDisConnetEnabled(_ value: Swift.Int) + @objc dynamic public func bleFindMyState(_ value: Swift.Int) + @objc dynamic public func bleVPUCLKState(_ value: Swift.Int) + @objc dynamic public func bleStopRecordingAfterCharging(_ value: Swift.Int) + @objc dynamic public func bleAutoClear(_ open: Swift.Bool) + @objc dynamic public func bleVad(_ open: Swift.Bool) + @objc dynamic public func bleWiFiClose(_ status: Swift.Int) + @objc dynamic public func bleSetWiFiSsid(status: Swift.Int) + @objc dynamic public func bleGetWiFiSsid(status: Swift.Int, ssid: Swift.String?) + @objc dynamic public func bleVoiceAbnormal(status: Swift.Int) + @objc dynamic public func bleWebsocketProfile(_ type: Swift.Int, _ conent: Swift.String?) + @objc dynamic public func bleWebsocketTest(_ status: Swift.Int) + @objc dynamic public func bleLedState(onOff: Swift.Int) + @objc dynamic public func bleSetLedState(onOff: Swift.Int) + @objc dynamic public func bleMarking(sessionId: Swift.Int, status: Swift.Int, markList: [Swift.UInt32]) + @objc dynamic public func bleAngles(pitchAngle: Swift.Float, rollbackAngle: Swift.Float, yawAngle: Swift.Float) + @objc dynamic public func blePrivacy(privacy: Swift.Int) + @objc dynamic public func bleClearAllFile(status: Swift.Int) + @objc dynamic public func bleAlarmRec(start: Swift.Int, duration: Swift.Int, repeatMode: Swift.Int) + @objc dynamic public func onResetFindmyResult(result: Swift.Int) + @objc dynamic public func onCommonParamsSetResult(success: Swift.Bool, dataType: Swift.Int, value: Swift.String?) + @objc dynamic public func onCommonParamsGetResult(success: Swift.Bool, dataType: Swift.Int, value: Swift.String?) + @objc dynamic public func onSetSoundPlusTokenResult(licenseKey: Swift.String) + @objc dynamic public func onGetSDFlashCIDResult(cid: Swift.String) +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + @objc dynamic public func reportDeviceMetadata() + @objc dynamic public func checkFirmwareUpdate(completion: @escaping (PlaudDeviceBasicSDK.PlaudFirmwareCheckResult) -> Swift.Void) + @objc dynamic public func startFirmwareUpdate(progress: @escaping (PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float) -> Swift.Void, completion: @escaping (PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult) -> Swift.Void) + @objc dynamic public func pushFirmwareFile(filePath: Swift.String, toVersion: Swift.String, progress: @escaping (PlaudDeviceBasicSDK.PlaudFirmwarePhase, Swift.Float) -> Swift.Void, completion: @escaping (PlaudDeviceBasicSDK.PlaudFirmwareUpdateResult) -> Swift.Void) +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func sendApiToken(token: Swift.String, callback: @escaping (Swift.Bool, Swift.String) -> Swift.Void) + public func sendBinaryFile(type: Swift.Int, data: Foundation.Data?, callback: @escaping (Swift.Bool, Swift.String) -> Swift.Void) + @objc dynamic public func onBinaryFileReq(type: Swift.Int, packageOffset: Swift.Int, packageSize: Swift.Int, endStatus: Swift.Int) + @objc dynamic public func onBinaryFileEnd(result: Swift.Int) +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func checkDeviceState(state _: Swift.Int, privacy _: Swift.Int, keyState _: Swift.Int, uDisk _: Swift.Int, findMyToken _: Swift.Int, hasSndpKey _: Swift.Int, deviceAccessToken: Swift.Int) +} +extension PlaudBleSDK.BleAgent { + @objc dynamic public var isSecureChannelEstablished: Swift.Bool { + @objc get + } + @objc dynamic public func getEncryptionKey() -> Swift.String? + @objc dynamic public func getEncryptionNonce() -> Swift.String? + @objc dynamic public func getEncryptionAD() -> Swift.String? + @objc dynamic public func getEncryptionParameters() -> [Swift.String : Swift.String]? + @objc dynamic public func decryptFileData(_ encryptedData: Foundation.Data, key: Swift.String? = nil, nonce: Swift.String? = nil, ad: Swift.String? = nil) throws -> Foundation.Data + @objc dynamic public func decryptFile(inputPath: Swift.String, outputPath: Swift.String, key: Swift.String? = nil, nonce: Swift.String? = nil, ad: Swift.String? = nil) -> Swift.Bool + @objc dynamic public func decryptAndPrepareOggFile(encryptedFilePath: Swift.String, channel: Swift.Int32, key: Swift.String? = nil, nonce: Swift.String? = nil, ad: Swift.String? = nil) -> Swift.String? +} +@objc public enum EncryptionError : Swift.Int, Swift.Error { + case noKey = 1 + case noNonce = 2 + case noAD = 3 + case dataTooShort = 4 + case decryptionFailed = 5 + public var localizedDescription: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public static var _nsErrorDomain: Swift.String { + get + } + public var rawValue: Swift.Int { + get + } +} +extension PlaudBleSDK.BleAgent { + @objc dynamic public func playDecryptedOggFile(encryptedFilePath: Swift.String, channel: Swift.Int32 = 1, delegate: (any PlaudBleSDK.JXOggPlayerDelegate)? = nil, key: Swift.String? = nil, nonce: Swift.String? = nil, ad: Swift.String? = nil) -> Swift.Bool + @objc dynamic public func stopOggPlayback() + @objc dynamic public func pauseOggPlayback() + @objc dynamic public func resumeOggPlayback() + @objc dynamic public func getOggPlayer() -> PlaudBleSDK.JXOggPlayer +} +extension PlaudBleSDK.BleAgent { + @objc dynamic public func decryptE2EEAudioFile(inputPath: Swift.String, outputPath: Swift.String? = nil, privateKeyPem: Swift.String) throws -> Swift.String + @objc dynamic public func isE2EEEncryptedFile(path: Swift.String) -> Swift.Bool + @objc dynamic public func getE2EEFileHeader(path: Swift.String) -> PlaudDeviceBasicSDK.PlaudEncryptHeader? +} +extension PlaudBleSDK.BleAgent { + @objc dynamic public var isEncryptionSupported: Swift.Bool { + @objc get + } + @objc dynamic public func getEncryptionProtocolInfo() -> [Swift.String : Any] +} +@objc public enum PlaudFirmwarePhase : Swift.Int { + case downloading = 0 + case installing = 1 + case restarting = 2 + case complete = 3 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_hasMissingDesignatedInitializers @objc public class PlaudFirmwareUpdateResult : ObjectiveC.NSObject { + @objc final public let success: Swift.Bool + @objc final public let version: Swift.String + @objc final public let errorMessage: Swift.String? + @objc deinit +} +@_hasMissingDesignatedInitializers @objc public class PlaudFirmwareCheckResult : ObjectiveC.NSObject { + @objc final public let hasUpdate: Swift.Bool + @objc final public let currentVersion: Swift.String + @objc final public let latestVersion: Swift.String + @objc final public let versionCode: Swift.Int + @objc final public let releaseNotes: Swift.String + @objc final public let downloadUrl: Swift.String + @objc final public let md5: Swift.String + @objc final public let isForce: Swift.Bool + @objc deinit +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + @objc dynamic public func clearSDKCredentials() +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func quickUpdateCheck(device: PlaudBleSDK.BleDevice, showUI: Swift.Bool = true, completion: @escaping (PlaudDeviceBasicSDK.UpdateStatus) -> Swift.Void) + public func quickUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", showUI: Swift.Bool = true, completion: ((Swift.Bool, Swift.String?) -> Swift.Void)? = nil) + public func silentUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", completion: @escaping (Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?) -> Swift.Void) + public func downloadUpdatePackage(downloadURL: Swift.String, model: Swift.String, versionNumber: Swift.String, versionCode: Swift.String = "", fileMD5: Swift.String? = nil, showProgress: Swift.Bool = false, completion: @escaping (Swift.Bool, Swift.String?) -> Swift.Void) + public func checkForceUpdate(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", completion: @escaping (Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?) -> Swift.Void) + public func getDownloadedUpdatePackages() -> [Swift.String] + @discardableResult + public func cleanDownloadedUpdatePackages() -> Swift.Bool +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func compareVersions(_ version1: Swift.String, _ version2: Swift.String) -> Swift.Int + public func shouldUpdate(currentVersion: Swift.String, latestVersion: Swift.String) -> Swift.Bool + public func formatFileSize(_ bytes: Swift.Int64) -> Swift.String +} +public func PlaudQuickUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", showUI: Swift.Bool = true, completion: ((Swift.Bool, Swift.String?) -> Swift.Void)? = nil) +public func PlaudSilentUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", completion: @escaping (Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?, (any Swift.Error)?) -> Swift.Void) +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public func checkSdkResource() +} +@objc public class LatestVersionResponse : ObjectiveC.NSObject, Swift.Codable { + @objc final public let type: Swift.String + @objc final public let model: Swift.String + @objc final public let version_type: Swift.String + @objc final public let version_code: Swift.String + @objc final public let version_number: Swift.String + @objc final public let version_description: Swift.String + @objc final public let is_force: Swift.Bool + @objc final public let is_strong_guidance: Swift.Bool + @objc final public let file_md5: Swift.String? + @objc final public let download_url: Swift.String + public init(type: Swift.String, model: Swift.String, version_type: Swift.String, version_code: Swift.String, version_number: Swift.String, version_description: Swift.String, is_force: Swift.Bool, is_strong_guidance: Swift.Bool, file_md5: Swift.String?, download_url: Swift.String) + @objc public var version: Swift.String { + @objc get + } + @objc public var release_notes: Swift.String? { + @objc get + } + @objc public var force_update: Swift.Bool { + @objc get + } + @objc deinit + public func encode(to encoder: any Swift.Encoder) throws + required public init(from decoder: any Swift.Decoder) throws +} +public enum UpdateStatus { + case checking + case available(PlaudDeviceBasicSDK.LatestVersionResponse) + case notAvailable + case downloading(progress: Swift.Float) + case downloaded(localPath: Swift.String) + case failed(any Swift.Error) +} +public enum UpdateError : Swift.Error, Foundation.LocalizedError { + case networkError(Swift.String) + case invalidResponse + case downloadFailed(Swift.String) + case fileSystemError(Swift.String) + case noUpdateAvailable + case userCancelled + public var errorDescription: Swift.String? { + get + } +} +extension PlaudDeviceBasicSDK.PlaudDeviceAgent { + public typealias UpdateStatusCallback = (PlaudDeviceBasicSDK.UpdateStatus) -> Swift.Void + public typealias UserConfirmationCallback = (Swift.Bool) -> Swift.Void + public func checkLatestVersion(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", callback: @escaping PlaudDeviceBasicSDK.PlaudDeviceAgent.UpdateStatusCallback) + @objc dynamic public func showUpdateConfirmation(versionInfo: PlaudDeviceBasicSDK.LatestVersionResponse, completion: @escaping (Swift.Bool) -> Swift.Void) + public func downloadUpdate(versionInfo: PlaudDeviceBasicSDK.LatestVersionResponse, callback: @escaping PlaudDeviceBasicSDK.PlaudDeviceAgent.UpdateStatusCallback) + public func performUpdateCheck(model: Swift.String, snType: Swift.String = "notepin", versionType: Swift.String = "V", callback: @escaping PlaudDeviceBasicSDK.PlaudDeviceAgent.UpdateStatusCallback) + @objc dynamic public func checkLatestVersionForModel(_ model: Swift.String, snType: Swift.String, versionType: Swift.String, hasUpdate: @escaping (Swift.Bool, PlaudDeviceBasicSDK.LatestVersionResponse?) -> Swift.Void, failure: @escaping (Swift.String) -> Swift.Void) + @objc dynamic public func downloadUpdateForVersion(_ versionInfo: PlaudDeviceBasicSDK.LatestVersionResponse, progress: @escaping (Swift.Float) -> Swift.Void, success: @escaping (Swift.String) -> Swift.Void, failure: @escaping (Swift.String) -> Swift.Void) +} +@objc public class PlaudEncryptHeader : ObjectiveC.NSObject { + @objc public static let headerSize: Swift.Int + @objc public static let magicString: Swift.String + @objc final public let magic: Foundation.Data + @objc final public let version: Swift.UInt16 + @objc final public let headerSizeValue: Swift.UInt16 + @objc final public let crc: Swift.UInt32 + @objc final public let userId: Foundation.Data + @objc final public let fileType: Swift.UInt16 + @objc final public let channel: Swift.UInt16 + @objc final public let encryptType: Swift.UInt16 + @objc final public let duration: Swift.UInt32 + @objc final public let reserved: Foundation.Data + @objc final public let counter: Swift.UInt32 + @objc final public let nonce: Foundation.Data + @objc final public let segment: Swift.UInt32 + @objc final public let algParams: Foundation.Data + @objc final public let keyCipher: Foundation.Data + @objc public init?(data: Foundation.Data) + @objc public static func fromFile(path: Swift.String) -> PlaudDeviceBasicSDK.PlaudEncryptHeader? + @objc public var isEncrypted: Swift.Bool { + @objc get + } + @objc public var userIdString: Swift.String { + @objc get + } + @objc override dynamic public var description: Swift.String { + @objc get + } + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudLogConfig : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudLogConfig + @objc public var maxFileCount: Swift.Int { + get + } + @objc public var maxFileAge: Swift.Double { + get + } + @objc public var maxFileSize: Swift.Int64 { + get + } + @objc public var uploadInterval: Foundation.TimeInterval { + get + } + @objc public var uploadTimeout: Swift.Double { + get + } + @objc public func updateFileConfiguration(maxFileCount: Swift.Int = 10, maxFileAge: Foundation.TimeInterval = 7 * 24 * 60 * 60, maxFileSize: Swift.Int64 = 10 * 1024 * 1024) + @objc public func updateUploadConfiguration(uploadInterval: Foundation.TimeInterval = { + return 300 + }(), uploadTimeout: Foundation.TimeInterval = 30) + @objc public func resetToDefaults() + @objc public func getCurrentConfiguration() -> [Swift.String : Any] + @objc public var maxFileAgeDays: Swift.Int { + @objc get + } + @objc public var maxFileSizeMB: Swift.Int { + @objc get + } + @objc public var uploadIntervalMinutes: Swift.Int { + @objc get + } + @objc public var uploadTimeoutSeconds: Swift.Int { + @objc get + } + @objc deinit +} +extension Foundation.NSNotification.Name { + public static let plaudLogConfigurationChanged: Foundation.NSNotification.Name +} +extension PlaudDeviceBasicSDK.PlaudLogConfig { + @objc dynamic public func validateConfiguration() -> Swift.Bool + @objc dynamic public func getConfigurationDescription() -> Swift.String +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudLogFileRotationManager : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudLogFileRotationManager + @objc public func forceRotateCurrentLogFile() + @objc public func checkAndRotateIfNeeded(filePath: Swift.String, additionalSize: Swift.Int64) -> Swift.Bool + @objc public func getCurrentLogFilePath() -> Swift.String + @objc public func notifyUploadCompleted() + @objc deinit +} +@objc public protocol PlaudWiFiAgentProtocol { + @objc optional func wifiCommonErr(_ cmd: Swift.Int, _ status: Swift.Int) + @objc optional func wifiHandshake(_ status: Swift.Int) + @objc optional func wifiConnectionStatus(_ ssid: Swift.String, _ connected: Swift.Bool) + @objc optional func wifiPower(_ power: Swift.Int, _ voltage: Swift.Int) + @objc optional func wifiFileListFail(_ status: Swift.Int) + @objc optional func wifiFileList(_ files: [PlaudBleSDK.BleFile]) + @objc optional func wifiSyncFile(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc optional func wifiSyncFileData(_ sessionId: Swift.Int, _ offset: Swift.Int, _ count: Swift.Int, _ binData: Foundation.Data) + @objc optional func wifiDataComplete() + @objc optional func wifiSyncFileStop(_ status: Swift.Int) + @objc optional func wifiFileDelete(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc optional func wifiClientFail() + @objc optional func wifiClose(_ status: Swift.Int) + @objc optional func wifiRateFail(_ status: Swift.Int) + @objc optional func wifiRate(_ instantRate: Swift.Int, _ averageRate: Swift.Int, _ lossRate: Swift.Double) + @objc optional func wifiLogsFail(_ status: Swift.Int) + @objc optional func wifiLogs(_ logData: Foundation.Data?) + @objc optional func wifiTips(_ tips: Swift.Int) + @objc optional func wifiDownloadAllProgress(_ totalFiles: Swift.Int, _ currentFileIndex: Swift.Int, _ currentFile: PlaudBleSDK.BleFile?, _ totalProgress: Swift.Double) + @objc optional func wifiDownloadAllCompleted(_ completedFiles: Swift.Int, _ failedFiles: Swift.Int) +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class PlaudWiFiAgent : ObjectiveC.NSObject { + @objc public static let shared: PlaudDeviceBasicSDK.PlaudWiFiAgent + @objc weak public var delegate: (any PlaudDeviceBasicSDK.PlaudWiFiAgentProtocol)? { + @objc get + @objc set + } + @objc public var bleDevice: PlaudBleSDK.BleDevice? { + @objc get + @objc set + } + @objc public var isDownloading: Swift.Bool { + @objc get + } + @objc public var currentSessionId: Swift.Int { + @objc get + } + @objc public var isConnected: Swift.Bool { + @objc get + } + @objc public var currentDownloadSpeedKBps: Swift.Double { + @objc get + } + @objc public func getFormattedDownloadSpeed() -> Swift.String + @objc public var isDownloadingAll: Swift.Bool { + get + } + @objc public func openLog(_ opened: Swift.Bool, _ backBlock: ((Swift.String) -> Swift.Void)? = nil) + @objc public func listenPort(_ ssid: Swift.String, _ overtimeSec: Swift.Int = 30) + @available(iOS 11.0, *) + @objc public func connectWifi(_ ssid: Swift.String, _ passphrase: Swift.String, _ overtimeSec: Swift.Int = 60) + @objc public func disconnect() + @objc public func isConnectedTo(_ ssid: Swift.String) -> Swift.Bool + @objc public func getConnectionStatusDescription() -> Swift.String + @objc public func getCurrentWiFiName() -> Swift.String? + @objc public func getFileList(_ uid: Swift.Int, _ sessionId: Swift.Int, _ single: Swift.Bool = false) + @objc public func syncFile(_ sessionId: Swift.Int, _ start: Swift.Int, _ end: Swift.Int = 0, _ scene: Swift.Int = 1) + @objc public func stopSyncFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc public func deleteFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + public func exportAudioViaWiFi(sessionId: Swift.Int, outputDir: Swift.String, format: PlaudDeviceBasicSDK.AudioExportFormat, channels: Swift.Int = 1, callback: any PlaudDeviceBasicSDK.AudioExportCallback) + @objc public func startDownloadAll() + @objc public func stopDownloadAll() + @objc public func startRateTest(_ onOff: Swift.Bool, _ packSize: Swift.Int) + @objc public func getDeviceLogs(_ begin: Swift.Bool) + @objc public func isWebSocketConnected() -> Swift.Bool + @objc deinit +} +extension PlaudDeviceBasicSDK.PlaudWiFiAgent : PlaudWiFiSDK.WiFiAgentProtocol { + @objc dynamic public func wifiCommonErr(_ cmd: Swift.Int, _ status: Swift.Int) + @objc dynamic public func wifiHandshake(_ status: Swift.Int) + public func wifiConnectionStatus(_ ssid: Swift.String, _ connected: Swift.Bool) + @objc dynamic public func wifiPower(_ power: Swift.Int, _ voltage: Swift.Int) + @objc dynamic public func wifiFileListFail(_ status: Swift.Int) + @objc dynamic public func wifiFileList(_ files: [PlaudBleSDK.BleFile]) + @objc dynamic public func wifiSyncFile(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc dynamic public func wifiSyncFileData(_ sessionId: Swift.Int, _ offset: Swift.Int, _ count: Swift.Int, _ binData: Foundation.Data) + @objc dynamic public func wifiDataComplete() + @objc dynamic public func wifiSyncFileStop(_ status: Swift.Int) + @objc dynamic public func wifiFileDelete(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc dynamic public func wifiClientFail() + @objc dynamic public func wifiClose(_ status: Swift.Int) + @objc dynamic public func wifiRateFail(_ status: Swift.Int) + @objc dynamic public func wifiRate(_ instantRate: Swift.Int, _ averageRate: Swift.Int, _ lossRate: Swift.Double) + @objc dynamic public func wifiLogsFail(_ status: Swift.Int) + @objc dynamic public func wifiLogs(_ logData: Foundation.Data?) + @objc dynamic public func wifiTips(_ tips: Swift.Int) + @objc dynamic public func penRequestOTAData(start: Swift.Int, end: Swift.Int, payloadSize: Swift.Int, uid: Swift.Int, sendRatePPS: Swift.Int) + @objc dynamic public func wifiOTAStatus(_ status: Swift.Int, _ uid: Swift.Int) +} +@_hasMissingDesignatedInitializers public class RSASecretConfig { + public static let defaultPublicKey: Swift.String + public static let defaultPrivateKey: Swift.String + public static func setKeys(publicKey: Swift.String, privateKey: Swift.String) + public static func getSnSignature(for sn: Swift.String) -> Swift.String? + public static func setSnSignature(_ signature: Swift.String, for sn: Swift.String) + public static func clearSnSignature(for sn: Swift.String) + public static func clearAllSnSignatures() + public static func clearKeys() + public static func getCurrentPublicKey() -> Swift.String + public static func getCurrentPrivateKey() -> Swift.String + public static func getPublicKey() throws -> PlaudBleSDK.PublicKey + public static func getPrivateKey() throws -> PlaudBleSDK.PrivateKey + public static func hasCustomKeys() -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @objc(PlaudLogEncryption) public class PlaudLogEncryption : ObjectiveC.NSObject { + @objc public static func exportEncryptedLogs() -> Foundation.NSURL? + @objc override dynamic public init() + @objc deinit +} +extension PlaudDeviceBasicSDK.Model : Swift.Equatable {} +extension PlaudDeviceBasicSDK.Model : Swift.Hashable {} +extension PlaudDeviceBasicSDK.Model : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.SoundCategory : Swift.Equatable {} +extension PlaudDeviceBasicSDK.SoundCategory : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudDomainManager.Region : Swift.Equatable {} +extension PlaudDeviceBasicSDK.PlaudDomainManager.Region : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudDomainManager.Region : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.PlaudLogUploadError : Swift.Equatable {} +extension PlaudDeviceBasicSDK.PlaudLogUploadError : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudLogUploadError : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.WorkflowStatus : Swift.Equatable {} +extension PlaudDeviceBasicSDK.WorkflowStatus : Swift.Hashable {} +extension PlaudDeviceBasicSDK.WorkflowStatus : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.WorkflowTaskType : Swift.Equatable {} +extension PlaudDeviceBasicSDK.WorkflowTaskType : Swift.Hashable {} +extension PlaudDeviceBasicSDK.WorkflowTaskType : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.AudioDecryptorError : Swift.Equatable {} +extension PlaudDeviceBasicSDK.AudioDecryptorError : Swift.Hashable {} +extension PlaudDeviceBasicSDK.AudioDecryptorError : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.ChaCha20Error : Swift.Equatable {} +extension PlaudDeviceBasicSDK.ChaCha20Error : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudDownloadFormat : Swift.Equatable {} +extension PlaudDeviceBasicSDK.PlaudDownloadFormat : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudDownloadFormat : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.AudioExportFormat : Swift.Equatable {} +extension PlaudDeviceBasicSDK.AudioExportFormat : Swift.Hashable {} +extension PlaudDeviceBasicSDK.AudioExportFormat : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.EncryptionError : Swift.Equatable {} +extension PlaudDeviceBasicSDK.EncryptionError : Swift.Hashable {} +extension PlaudDeviceBasicSDK.EncryptionError : Swift.RawRepresentable {} +extension PlaudDeviceBasicSDK.PlaudFirmwarePhase : Swift.Equatable {} +extension PlaudDeviceBasicSDK.PlaudFirmwarePhase : Swift.Hashable {} +extension PlaudDeviceBasicSDK.PlaudFirmwarePhase : Swift.RawRepresentable {} diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/module.modulemap b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/module.modulemap new file mode 100644 index 0000000..e96fcbc --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/Modules/module.modulemap @@ -0,0 +1,11 @@ +framework module PlaudDeviceBasicSDK { + umbrella header "PlaudDeviceBasicSDK.h" + export * + + module * { export * } +} + +module PlaudDeviceBasicSDK.Swift { + header "PlaudDeviceBasicSDK-Swift.h" + requires objc +} diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK new file mode 100644 index 0000000..d83920e Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/Info.plist b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/Info.plist new file mode 100644 index 0000000..08cb0fb --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/Info.plist @@ -0,0 +1,29 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleIdentifier + com.plaud.PlaudDeviceBasicSDK + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + PlaudDeviceBasicSDK + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + CFBundleSupportedPlatforms + + iPhoneOS + + CFBundleLocalizations + + en + zh-Hans + + + diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings new file mode 100644 index 0000000..8ff533c --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings @@ -0,0 +1,149 @@ +// Common +"ok" = "OK"; +"cancel" = "Cancel"; +"confirm" = "Confirm"; +"error" = "Error"; + +// Permission +"permission_init_failed" = "SDK permission initialization failed, please contact developer platform"; +"permission_denied" = "No permission for this feature, please contact developer platform"; + +// Print +"print_error" = "Print Error"; +"print_success" = "Print Success"; +"print_cancelled" = "Print Cancelled"; +"print_test_framework" = "Testing Static Library --framework"; + +// SDK Resource +"sdk_resource_init_failed" = "Resource initialization failed. Please check if the Host App has correctly added PlaudDeviceBasicSDK.bundle"; + +// Binary File +"binary_file_empty" = "Binary file data is empty"; +"binary_data_not_available" = "Error: Binary data is not available"; +"invalid_package_offset_size" = "Error: Invalid package offset or size"; +"binary_file_transfer_complete" = "transfer binary file complete"; +"binary_file_transfer_succeed" = "transfer binary file succeed"; + + +// Device Scanning and Connection +"scan_device" = "Scan Device"; +"refresh" = "Refresh"; +"connect" = "Connect"; +"signal_strength_format" = "Signal Strength: %ld dBm"; +"sn_format" = "SN: %@"; +"status_unbound" = "Status: Unbound"; +"status_bound" = "Status: Bound"; +"device_connecting" = "Device Connecting"; +"device_disconnected" = "Device Disconnected"; +"device_connect_failed" = "Device Connection Failed"; +"device_connect_unknown" = "Unknown Connection Status"; +"device_already_bound" = "Device is already bound, cannot bind to a new device"; + +// WiFi Settings +"wifi_setup" = "Wi-Fi Setup"; +"wifi_24g_only" = "Only supports 2.4GHz networks"; +"wifi_name" = "Name"; +"wifi_password" = "Password"; +"wifi_name_placeholder" = "Enter Wi-Fi name"; +"wifi_password_placeholder" = "Enter Wi-Fi password"; +"wifi_test_connection" = "Test Connection"; +"wifi_connected" = "Connected"; +"wifi_connecting" = "Connecting, please wait..."; +"wifi_forget" = "Ignore Network"; +"wifi_edit" = "Edit"; +"wifi_done" = "Done"; +"wifi_alert_title" = "Notice"; +"wifi_alert_input_required" = "Please enter both Wi-Fi name and password"; +"wifi_alert_connection_success" = "Connection Success"; +"wifi_alert_connection_success_message" = "Wi-Fi connection test successful"; +"wifi_alert_connection_failed" = "Connection Failed"; +"wifi_alert_forget_title" = "Ignore Network"; +"wifi_alert_forget_message" = "Are you sure you want to forget this Wi-Fi network?"; +"wifi_alert_forget_confirm" = "Forget"; + +// WiFi Setting Page +"wifi_cloud_title" = "Wi-Fi Cloud Sync"; +"wifi_cloud_desc" = "NotePin will automatically connect to your configured Wi-Fi networks to upload recordings to the cloud. You can add multiple networks (e.g., home, work). Only 2.4GHz networks are supported."; +"wifi_cloud_switch" = "Wi-Fi Cloud Sync"; +"wifi_cloud_set_address" = "Set Sync Address"; +"wifi_cloud_info" = "Private Cloud Sync is Plaud.AI's dedicated private cloud space for each user, ensuring secure data backup and preventing loss."; +"wifi_configure" = "Configure Wi-Fi"; +"wifi_network_list" = "Network List"; +"wifi_other" = "Other..."; +"wifi_set_address_title" = "Set Sync Address"; +"wifi_set_address_message" = "Please enter server address"; +"wifi_test_timeout" = "Timeout Error"; +"wifi_test_not_found" = "Connection failed: Wi-Fi not found"; +"wifi_test_wrong_password" = "Connection failed: Wrong Wi-Fi password"; +"wifi_test_failed" = "Wi-Fi connection failed"; +"wifi_test_data_failed" = "Connection failed: Data transfer error"; +"wifi_add_limit_title" = "Add Failed"; +"wifi_add_limit_message" = "Maximum 5 Wi-Fi networks allowed. Please delete one first"; + +// Audio Player +"audio_player_title" = "Audio Player"; +"audio_status_ready" = "Ready to Play"; +"audio_status_playing" = "Playing..."; +"audio_status_paused" = "Paused"; +"audio_status_finished" = "Finished"; +"audio_status_complete" = "Playback Complete"; +"audio_status_error" = "Playback Error"; +"audio_load_failed_format" = "Audio Load Failed: %@"; +"audio_decode_error_format" = "Decode Error: %@"; +"audio_unknown_error" = "Unknown Error"; + +// WiFi Test +"wifi_test_timeout" = "Timeout Error"; + +// File Download +"file_downloading" = "Stream file downloading in progress"; +"file_transcoding" = "Transcoding..."; +"file_download_complete" = "Download file complete"; +"file_transcode_error" = "Transcoding error"; +"file_transcode_error_no_permission" = "Transcoding error, no permission"; + + +// Workflow Status +"pending" = "Pending"; +"running" = "Running"; +"progress" = "In Progress"; +"success" = "Success"; +"failure" = "Failed"; +"cancelled" = "Cancelled"; +"timeout" = "Timeout"; + +// Workflow Task Types +"ai_etl" = "AI ETL"; +"audio_merge" = "Audio Merge"; +"custom" = "Custom"; +"unknown" = "Unknown"; +"audio_transcribe" = "Audio Transcription"; +"ai_summarize" = "AI Summary"; + +// Workflow Errors +"invalid_url" = "Invalid URL"; +"network_error" = "Network Error"; +"invalid_response" = "Invalid Response"; +"server_error" = "Server Error"; +"workflow_not_found" = "Workflow Not Found"; +"workflow_failed" = "Workflow Failed"; +"no_api_token" = "No API Token"; + +// Update Manager +"update.message.no_update_available" = "No update available"; +"update.message.user_cancelled" = "Update cancelled by user"; +"update.error.network" = "Network error: %@"; +"update.error.invalid_response" = "Invalid response from server"; +"update.error.download_failed" = "Download failed: %@"; +"update.error.file_system" = "File system error: %@"; +"update.error.no_update_available" = "No update available"; +"update.error.user_cancelled" = "Update cancelled by user"; +"update.error.unknown" = "Unknown error occurred"; + +// Update Alerts +"update.alert.title.force" = "Force Update"; +"update.alert.title.new_version" = "New Version Available"; +"update.alert.new_version" = "New Version: %@"; +"update.alert.ask_to_download" = "Download and install now?"; +"update.alert.action.remind_later" = "Remind Me Later"; +"update.alert.action.update_now" = "Update Now"; diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings new file mode 100644 index 0000000..3555871 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings @@ -0,0 +1,150 @@ +// Common +"ok" = "确定"; +"cancel" = "取消"; +"confirm" = "确认"; +"error" = "错误"; + +// Permission +"permission_init_failed" = "SDK权限初始化失败,请联系开发者平台"; +"permission_denied" = "该功能暂无权限,请联系开发者平台"; + +// Print +"print_error" = "打印错误"; +"print_success" = "打印成功"; +"print_cancelled" = "打印已取消"; +"print_test_framework" = "测试静态库 --framework"; + +// SDK Resource +"sdk_resource_init_failed" = "资源初始化失败,请检查Host App 是否正确添加PlaudDeviceBasicSDK.bundle"; + +// Binary File +"binary_file_empty" = "二进制文件数据为空"; +"binary_data_not_available" = "错误:二进制数据不可用"; +"invalid_package_offset_size" = "错误:无效的数据包偏移量或大小"; +"binary_file_transfer_complete" = "二进制文件传输完成"; +"binary_file_transfer_succeed" = "二进制文件传输成功"; + + + +// Device Scanning and Connection +"scan_device" = "扫描设备"; +"refresh" = "刷新"; +"connect" = "连接"; +"signal_strength_format" = "信号强度: %ld dBm"; +"sn_format" = "SN: %@"; +"status_unbound" = "状态: 未绑定"; +"status_bound" = "状态: 已绑定"; +"device_connecting" = "设备连接中"; +"device_disconnected" = "设备未连接"; +"device_connect_failed" = "设备连接失败"; +"device_connect_unknown" = "未知连接状态"; +"device_already_bound" = "设备已绑定,不能绑定到新的设备"; + +// WiFi Settings +"wifi_setup" = "设置 Wi-Fi"; +"wifi_24g_only" = "仅支持 2.4GHz 网络"; +"wifi_name" = "名称"; +"wifi_password" = "密码"; +"wifi_name_placeholder" = "请输入Wi-Fi名称"; +"wifi_password_placeholder" = "请输入Wi-Fi密码"; +"wifi_test_connection" = "测试连接"; +"wifi_connected" = "已连接"; +"wifi_connecting" = "连接中,请稍候..."; +"wifi_forget" = "忘记此网络"; +"wifi_edit" = "编辑"; +"wifi_done" = "完成"; +"wifi_alert_title" = "提示"; +"wifi_alert_input_required" = "请输入完整的WiFi名称和密码"; +"wifi_alert_connection_success" = "连接成功"; +"wifi_alert_connection_success_message" = "WiFi连接测试成功"; +"wifi_alert_connection_failed" = "连接失败"; +"wifi_alert_forget_title" = "忘记网络"; +"wifi_alert_forget_message" = "确定要忘记这个WiFi网络吗?"; +"wifi_alert_forget_confirm" = "忘记"; + +// WiFi Setting Page +"wifi_cloud_title" = "Wi-Fi上云"; +"wifi_cloud_desc" = "NotePin 会自动连接到你配置的 Wi-Fi 网络,将录音上传到云端。你可以添加多个常用网络(例如家里、工作)。目前仅支持 2.4GHz 网络。"; +"wifi_cloud_switch" = "Wi-Fi上云"; +"wifi_cloud_set_address" = "设置地址"; +"wifi_cloud_info" = "Private Cloud Sync 是 Plaud.AI 为每位用户提供的独立私有云空间,用于安全备份数据并防止丢失。"; +"wifi_configure" = "配置 Wi-Fi"; +"wifi_network_list" = "网络列表"; +"wifi_other" = "其他..."; +"wifi_set_address_title" = "设置上传地址"; +"wifi_set_address_message" = "请输入服务器地址"; +"wifi_test_timeout" = "超时错误"; +"wifi_test_not_found" = "连接失败,未找到wifi"; +"wifi_test_wrong_password" = "连接失败,Wifi密码不正确"; +"wifi_test_failed" = "Wifi连接失败"; +"wifi_test_data_failed" = "连接失败,数据传输失败"; +"wifi_add_limit_title" = "添加失败"; +"wifi_add_limit_message" = "最多能配置 5 个 Wi-Fi,请先删除"; + +// Audio Player +"audio_player_title" = "音频播放"; +"audio_status_ready" = "准备播放"; +"audio_status_playing" = "播放中..."; +"audio_status_paused" = "已暂停"; +"audio_status_finished" = "已结束"; +"audio_status_complete" = "播放完成"; +"audio_status_error" = "播放出错"; +"audio_load_failed_format" = "音频加载失败: %@"; +"audio_decode_error_format" = "解码错误: %@"; +"audio_unknown_error" = "未知错误"; + +// WiFi Test +"wifi_test_timeout" = "超时错误"; + +// File Download +"file_downloading" = "流式文件下载中"; +"file_transcoding" = "转码中..."; +"file_download_complete" = "下载并转码完成"; +"file_transcode_error" = "转码错误"; +"file_transcode_error_no_permission" = "转码错误, 无权限"; + +// Workflow Status +"success" = "成功"; +"failure" = "失败"; +"cancelled" = "已取消"; +"timeout" = "超时"; +"pending" = "等待中"; +"running" = "运行中"; +"progress" = "进行中"; + + +// Workflow Task Types +"audio_transcribe" = "音频转写"; +"ai_summarize" = "AI总结"; +"ai_etl" = "AI ETL"; +"audio_merge" = "音频合并"; +"custom" = "自定义"; +"unknown" = "未知"; + +// Workflow Errors +"invalid_url" = "无效URL"; +"network_error" = "网络错误"; +"invalid_response" = "无效响应"; +"server_error" = "服务器错误"; +"workflow_not_found" = "工作流未找到"; +"workflow_failed" = "工作流失败"; +"no_api_token" = "无API令牌"; + +// Update Manager +"update.message.no_update_available" = "暂无可用更新"; +"update.message.user_cancelled" = "用户已取消更新"; +"update.error.network" = "网络错误:%@"; +"update.error.invalid_response" = "服务器响应无效"; +"update.error.download_failed" = "下载失败:%@"; +"update.error.file_system" = "文件系统错误:%@"; +"update.error.no_update_available" = "暂无可用更新"; +"update.error.user_cancelled" = "用户已取消更新"; +"update.error.unknown" = "发生未知错误"; + +// Update Alerts +"update.alert.title.force" = "强制更新"; +"update.alert.title.new_version" = "发现新版本"; +"update.alert.new_version" = "新版本: %@"; +"update.alert.ask_to_download" = "是否立即下载更新?"; +"update.alert.action.remind_later" = "稍后提醒"; +"update.alert.action.update_now" = "立即更新"; diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeDirectory b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeDirectory new file mode 100644 index 0000000..c113f71 Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeDirectory differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements new file mode 100644 index 0000000..648997d Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements-1 b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 0000000..2522204 Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeResources b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..962ac82 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeResources @@ -0,0 +1,341 @@ + + + + + files + + Headers/PlaudDeviceBasicSDK-Swift.h + + MyJZKC2Dxib20/XKyIURHoNxxr8= + + Headers/PlaudDeviceBasicSDK.h + + +3ARYwQKIi29DkheSViaejyPmH8= + + Headers/PlaudLogRedirect.h + + ckzEvXu6/1FI10b3oKL0zXEbS3A= + + Headers/PrintManager.h + + VT4L7jLk+wVGCEFGnF3JweGFM/Q= + + Info.plist + + X47w1KADRTseISgGpC3sEPLhiIM= + + Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo + + rrnDB/HVPhr5QyYyy+Z6g97p0+A= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json + + AHKGNG17Br/tVF9A4Ou7mYQDNJ8= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.private.swiftinterface + + R1g7NA8TG68Cqt0xoJxW+SNkh4w= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc + + 11egdFo9RVS5Oclw3eOWENsxw6Y= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface + + R1g7NA8TG68Cqt0xoJxW+SNkh4w= + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftmodule + + ekU8jiThottTBjZAu9F2raMlfMM= + + Modules/module.modulemap + + ZJvUCCKKCV47/yuYtJPmSszr5KY= + + PlaudDeviceBasicSDK.bundle/Info.plist + + 5y3sypvdnO7MC5O2E9hFiqbrO0M= + + PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings + + hash + + wMAmf73xxnfRA5adBiJcjpHv0WA= + + optional + + + PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings + + hash + + bApgxzM1OZkEyoSVAZ2qq04LOmA= + + optional + + + plaud_ai_data.txt + + ka+Py3CnSLpccrtN1aFwvFtl5Ec= + + + files2 + + Headers/PlaudDeviceBasicSDK-Swift.h + + hash + + MyJZKC2Dxib20/XKyIURHoNxxr8= + + hash2 + + bcX/LnCiK9CyTGbgc2fe7B5xuAnUINuGvyAwkkNUM4U= + + + Headers/PlaudDeviceBasicSDK.h + + hash + + +3ARYwQKIi29DkheSViaejyPmH8= + + hash2 + + /amvzBOtoprFzLs7cx1e3UWBQwXSttj2LKk6+wb8V0w= + + + Headers/PlaudLogRedirect.h + + hash + + ckzEvXu6/1FI10b3oKL0zXEbS3A= + + hash2 + + gV4LIMvMfvdE0gLWQJE10XDV9121caPYVua/f4DkZFk= + + + Headers/PrintManager.h + + hash + + VT4L7jLk+wVGCEFGnF3JweGFM/Q= + + hash2 + + w0E7hV+SQJ54ZIY+IbgLShpQal6cv3lyub7tNy4/cyA= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo + + hash + + rrnDB/HVPhr5QyYyy+Z6g97p0+A= + + hash2 + + aWQuIUuSroGXrP9/gJ5VbrYzqHJwn7/jbSP7zigqplA= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.abi.json + + hash + + AHKGNG17Br/tVF9A4Ou7mYQDNJ8= + + hash2 + + a1IVjMjuqxf6azljtaV1vxXFPlEadlQ/7UiOtTOMYco= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.private.swiftinterface + + hash + + R1g7NA8TG68Cqt0xoJxW+SNkh4w= + + hash2 + + aCjNl4w08Tjfz0Pp8AWm0O8OK+YQP7iGgfHhIbakoPM= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftdoc + + hash + + 11egdFo9RVS5Oclw3eOWENsxw6Y= + + hash2 + + 2+6SEbG9EJL2RD/1gfQfTdY+8UcC9mwp/bsB9hqpQTY= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftinterface + + hash + + R1g7NA8TG68Cqt0xoJxW+SNkh4w= + + hash2 + + aCjNl4w08Tjfz0Pp8AWm0O8OK+YQP7iGgfHhIbakoPM= + + + Modules/PlaudDeviceBasicSDK.swiftmodule/arm64-apple-ios.swiftmodule + + hash + + ekU8jiThottTBjZAu9F2raMlfMM= + + hash2 + + iXpqfO7mx1PxR3TxcTF7r0Sg8IG0rQM4+cp4s31eas0= + + + Modules/module.modulemap + + hash + + ZJvUCCKKCV47/yuYtJPmSszr5KY= + + hash2 + + Yr6dni0J5v/6LMztrNMzGleM8nVoaWjnXZsHHJ9YPIo= + + + PlaudDeviceBasicSDK.bundle/Info.plist + + hash + + 5y3sypvdnO7MC5O2E9hFiqbrO0M= + + hash2 + + FJBbA3UyOe5tSm5M+QJ9+ZfsgooQYcaTRaslCUfYoqM= + + + PlaudDeviceBasicSDK.bundle/en.lproj/Localizable.strings + + hash + + wMAmf73xxnfRA5adBiJcjpHv0WA= + + hash2 + + G0pY2fvF/epULhD9i2hy6v22XRRrHv6rDd+w4uyIhoU= + + optional + + + PlaudDeviceBasicSDK.bundle/zh-Hans.lproj/Localizable.strings + + hash + + bApgxzM1OZkEyoSVAZ2qq04LOmA= + + hash2 + + 5jyMPl73wOz+N+XmsXCNY3Eeb+pdUXZS97EWu6kn75M= + + optional + + + plaud_ai_data.txt + + hash + + ka+Py3CnSLpccrtN1aFwvFtl5Ec= + + hash2 + + U2l4bAmm40GRd2I9mBcTaH7FRhI3h3CT31kan1c8D+8= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeSignature b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeSignature new file mode 100644 index 0000000..9e3f683 Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/_CodeSignature/CodeSignature differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/plaud_ai_data.txt b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/plaud_ai_data.txt new file mode 100644 index 0000000..044a960 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudDeviceBasicSDK.xcframework/ios-arm64/PlaudDeviceBasicSDK.framework/plaud_ai_data.txt @@ -0,0 +1,1702 @@ + + +type1: +{ + "status" : "SUCCESS", + "id" : "wf_01984467-041c-4ab2-97d4-1c39dac0c8d2", + "owner_id" : "test-001", + "metadata_json" : { + + }, + "tasks" : [ + { + "task_type" : "audio_transcribe", + "status" : "SUCCESS", + "result" : { + "status" : 3, + "embeddings" : { + "Speaker 1" : [ + -0.19234217703342438, + 0.15948718786239624, + -0.10121628642082214, + 0.09667099267244339, + -0.10816331207752228, + 0.14343123137950897, + -0.094416134059429169, + 0.14881746470928192, + -0.072478733956813812, + -0.088625960052013397, + -0.11696280539035797, + -0.17257097363471985, + 0.19466535747051239, + 0.27258849143981934, + -0.034721933305263519, + 0.26778826117515564, + 0.01423680130392313, + 0.16383779048919678, + 0.14811916649341583, + 0.1229625791311264, + -0.26089936494827271, + 0.048276558518409729, + -0.29667317867279053, + -0.059747211635112762, + 0.2219168096780777, + 0.0029855130705982447, + 0.074563905596733093, + 0.073401913046836853, + -0.067731454968452454, + 0.13082771003246307, + 0.26649996638298035, + -0.22226500511169434, + -0.071649461984634399, + 0.40993419289588928, + 0.09660310298204422, + 0.017572876065969467, + -0.01206977479159832, + -0.11588973551988602, + 0.18956200778484344, + -0.11792318522930145, + -0.07967609167098999, + -0.1645093709230423, + 0.01715848408639431, + 0.10080588608980179, + 0.027268635109066963, + 0.07046113908290863, + -0.013552744872868061, + -0.21095576882362366, + -0.086705341935157776, + 0.19767187535762787, + -0.16107642650604248, + -0.013121266849339008, + 0.042569279670715332, + -0.093373171985149384, + -0.20870651304721832, + -0.079430930316448212, + -0.10380082577466965, + 0.047178130596876144, + -0.071631968021392822, + 0.028615860268473625, + 0.14288191497325897, + -0.25993448495864868, + 0.17642973363399506, + 0.025652721524238586, + 0.1193835660815239, + 0.2705918550491333, + -0.26632535457611084, + 0.10181724280118942, + 0.12000474333763123, + 0.21866343915462494, + -0.014766930602490902, + -0.01777997799217701, + 0.13665838539600372, + -0.036518480628728867, + 0.24088461697101593, + 0.1331581175327301, + 0.24392800033092499, + -0.048006385564804077, + 0.14288094639778137, + -0.31120264530181885, + -0.19795562326908112, + 0.18933898210525513, + 0.051715798676013947, + 0.018272586166858673, + -0.10932342708110809, + -0.05836234986782074, + 0.18826363980770111, + -0.052310489118099213, + 0.10870229452848434, + -0.14970879256725311, + 0.065227203071117401, + -0.037733990699052811, + 0.087010063230991364, + 0.10531853139400482, + -0.0015284419059753418, + -0.1226126030087471, + 0.10196753591299057, + 0.13909898698329926, + -0.18919757008552551, + -0.026061775162816048, + 0.046619832515716553, + 0.061219368129968643, + 0.1937614232301712, + 0.23604753613471985, + 0.049536067992448807, + 0.10689438879489899, + -0.066332891583442688, + 0.20075637102127075, + 0.096797734498977661, + 0.10916589200496674, + -0.038406968116760254, + 0.10934307426214218, + -0.23431545495986938, + 0.37497475743293762, + -0.027763955295085907, + -0.099452003836631775, + 0.065108262002468109, + -0.13913810253143311, + -0.061214033514261246, + 0.020255215466022491, + 0.076258979737758636, + -0.28872641921043396, + -0.031529378145933151, + 0.028386011719703674, + 0.0015066558262333274, + 0.13335064053535461, + -0.18243856728076935, + 0.008845135569572449, + 0.014226892963051796, + -0.091008566319942474, + 0.15394964814186096, + 0.17845408618450165, + 0.13104711472988129, + -0.013807497918605804, + 0.20593200623989105, + -0.029723070561885834, + 0.11704555153846741, + 0.19933998584747314, + 0.093228578567504883, + 0.20425538718700409, + 0.035895369946956635, + -0.003707759315147996, + 0.011053327471017838, + -0.062130790203809738, + 0.092562086880207062, + -0.099022693932056427, + -0.15061657130718231, + 0.051656432449817657, + 0.24526003003120422, + -0.25799405574798584, + -0.004706541541963816, + 0.021352224051952362, + -0.14497277140617371, + -0.19192571938037872, + -0.14999799430370331, + 0.24017837643623352, + -0.18151266872882843, + 0.062906302511692047, + 0.18438664078712463, + 0.16227760910987854, + -0.045849699527025223, + -0.014836857095360756, + -0.10389851778745651, + 0.15956704318523407, + 0.047496210783720016, + -0.013092847540974617, + -0.089076630771160126, + -0.022118842229247093, + 0.21509920060634613, + 0.039225015789270401, + 0.073112688958644867, + 0.10146018862724304, + -0.11946260184049606, + -0.19580845534801483, + -0.16934537887573242, + -0.036426417529582977, + 0.044822379946708679, + 0.0066635315306484699, + -0.12034671008586884, + 0.033571489155292511, + -0.14462937414646149, + -0.081339575350284576, + 0.033895552158355713, + -0.02190169133245945, + 0.14421048760414124, + -0.063272669911384583, + -0.032736964523792267, + -0.14766211807727814, + 0.12916681170463562, + 0.075516536831855774, + -0.13715338706970215, + 0.10289894044399261, + -0.11953147500753403, + -0.25960412621498108, + -0.17824186384677887, + + 0.065146192908287048, + 0.058506675064563751, + -0.060783509165048599, + 0.014332784339785576, + 0.024016814306378365, + -0.15361899137496948, + -0.17037390172481537, + 0.053834732621908188, + 0.068668335676193237, + 0.22225691378116608, + 0.055594194680452347, + 0.15268510580062866, + -0.087633624672889709, + -0.15043497085571289, + 0.33224472403526306, + -0.021008389070630074, + -0.052215460687875748, + 0.12713024020195007, + -0.24183684587478638, + 0.12800848484039307, + 0.007440058048814535, + -0.18693780899047852, + -0.062327243387699127, + 0.20647658407688141, + -0.39140555262565613, + 0.11960991472005844, + 0.089925825595855713, + -0.04516398161649704, + -0.37922877073287964, + -0.16119140386581421, + -0.061166856437921524, + -0.045589271932840347, + -0.029988175258040428, + -0.20828233659267426, + -0.21009369194507599, + 0.12811474502086639, + 0.05009855329990387, + 0.18589450418949127, + 0.066524937748908997, + -0.3960881233215332, + 0.20921915769577026, + -0.1141706258058548, + -0.14732800424098969, + -0.31457120180130005, + -0.25601106882095337, + -0.57838451862335205, + -0.044736035168170929, + -0.095158882439136505, + -0.095164597034454346, + -0.18723849952220917, + 0.068853452801704407, + -0.33071690797805786, + 0.014438859187066555, + -0.18069943785667419, + -0.054355964064598083, + 0.35814380645751953, + -0.25015285611152649, + -0.27810752391815186, + 0.20590695738792419, + 0.1270439475774765, + 0.066699407994747162 + ] + }, + "segments" : [ + { + "text" : "如何做产品怎么干,是JK去年与同僚的最多的话题,是销中上市时创下了70倍PE的市值6月18日饮食市值继续大涨逼近800亿元,资本市场再次一片狂欢,不同于其他公司上市后普发福利红包的热闹与喧嚣饮食公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目该加班的加班,不同的是,所有人都因为饮食换了一种身份。", + "speaker" : "Speaker 1", + "end" : 33220, + "start" : 1200 + }, + { + "text" : "而被受注目,上市这件事情和结婚一样意味着自己的义务变了,虽然兴奋但是身上的担子更重了,JK在采访里提到雷锋网了解到近两个月来饮食进行了一轮较大范围的组织架构调整将多条产品线进行重新整合多番调整下饮食又何变化欢迎添加微信和Q501一起交流,年初至今饮食的团队规模扩充了不少。", + "speaker" : "Speaker 1", + "end" : 63931, + "start" : 33220 + }, + { + "text" : "调整的过程虽有些波折但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化,从而去应对三家争霸饮食今年压力最大前有DJI 后有追秘都在布局全景相继有一次JK与众欣赏地说,我们需要全面备战一位饮食员工说道,赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难,而IPO只是一个分水岭。", + "speaker" : "Speaker 1", + "end" : 95392, + "start" : 64292 + }, + { + "text" : "如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题屋子里的大象来势汹汹饮食怎么应对,饮食到底值不值70倍的皮未来是否能守得住自己的市场份额,竞争如此胶着管理层是什么思考的,01,dji 濒临城下影视如何应对今年 jk 在年会上承认在 dji 面前他们确实还是弟弟承认归承认。", + "speaker" : "Speaker 1", + "end" : 129763, + "start" : 96222 + }, + { + "text" : "jk 也同时在内部放话战术上重视战略上升为做好打印帐跑马拉松的准备,他认为就像人跑马拉松那个半跑的人或领跑的人还是很重要的,竞争对手给到你的启发远大于从你手上剥夺的东西,影视备战的第一步是先发之人因斯特360 x5在4月抢先发布这距离上一代产品x4发布仅过去一年的时间,要知道此前x2 x3两代的产品周期基本都是两年另一边。", + "speaker" : "Speaker 1", + "end" : 165874, + "start" : 130283 + }, + { + "text" : "影视进一步强化产品和品牌营销让消费者形成认知全景就是因斯特360的天下,今年二月以来影视开始不遗余力为产品造势小刀运动相机出,大到发布新的全景相机X5通过广告投放加大了对目标消费者的市场渗透,坊间流传,今年NST360 X5的广告预算比以往高出不少,雷锋网了解到,X5的广告营销。", + "speaker" : "Speaker 1", + "end" : 197466, + "start" : 166374 + }, + { + "text" : "基本覆盖了各个渠道的KOL,凭借全新的产品在大幅度的广告投流下影视X5发布初期就取得了比较可观的销量,大规模投放下X5销量情况如何,欢迎添加微信QQ501一起交流至少目前来看,影视的策略是有章法的,影视网罗了硬件3C领域绝大多数的KOL只要有新的KOL开始冒头都会被影视抢先遣下在长期重视营销的结果下。", + "speaker" : "Speaker 1", + "end" : 230296, + "start" : 197466 + }, + { + "text" : "影视逐渐形成了一套围绕KOL的营销方法论,而对面的DJI在营销上的态度始终模棱两可时而强,时而入此前方健有说法称营销曾经是DJI的眼前的公司不开展会汪涛也不会在公众露面市场他也不愿意投品牌也不投,因为汪涛算不清楚这笔账的投入和产出比算不清楚他就不投,汪涛不愿意给KOL花钱他觉得这些人什么都没干。", + "speaker" : "Speaker 1", + "end" : 261690, + "start" : 230296 + }, + { + "text" : "躺着就赚了DJI的钱,谁都不能躺着赚我的钱,熟悉DJI的人是李洋向雷锋网投,2020年以前DJI是比较重视KOL营销的很多渠道的KOL都投了,谢家走了之后这些合作项目就都停了,很长一段时间里DJI的市场团队一度是最没有存在感的部分,人手凋零没几个人对这些人来说要想在汪涛那里拿到市场预算就得向汪涛证明。", + "speaker" : "Speaker 1", + "end" : 292780, + "start" : 261690 + }, + { + "text" : "这些预算投了出去能得到多少钱的回报这个问题没有人能回答出来也因此,dji的市场人员阵亡率很高某种程度上 dji不太重视营销与他在无人机市场的强势领导地位有关,王涛认为只要产品领导力在营销就是可有可无的但当dji开始不断拖新品牌竞争对手的战力指数也更高时,几乎没有人能忽视营销的buff 意识到威胁后现在的dji也一反常态通过加大市场营销投入穷追不舍。", + "speaker" : "Speaker 1", + "end" : 329132, + "start" : 292780 + }, + { + "text" : "2024年火爆全网络的炮", + "speaker" : "Speaker 1", + "end" : 332051, + "start" : 329952 + } + ] + }, + "start_time" : 1750835685115, + "end_time" : 1750835705133, + "task_id" : "task_6586838c-09bf-411f-bc6b-4e0fd76b470b" + }, + { + "task_type" : "ai_summarize", + "status" : "SUCCESS", + "result" : { + "status" : "GatewayTaskStatus.COMPLETED", + "result" : { + "summary_id" : "20250625071508-v2@26337868f9362d731fce60", + "select_prompt_type" : null, + "speaker_mapping" : null, + "use_persona" : false, + "version" : "0.5.0.24", + "tokens_lens" : 1215, + "retry_count" : 0, + "header" : { + "category" : "会议纪要", + "industry_category" : "食品和饮料", + "language_code" : "zh", + "keywords" : [ + "饮食公司", + "市场挑战", + "营销策略" + ], + "recommend_questions" : [ + { + "question" : "饮食公司如何应对市场竞争,尤其是与DJI的竞争?", + "category" : "question_category_content", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "饮食公司如何证明其市值合理性并保持市场份额?", + "category" : "question_category_content", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "饮食公司在市场竞争中面临的压力和挑战是什么?", + "category" : "question_category_content", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "识别饮食公司在市场竞争中的最大风险是什么?", + "category" : "question_category_shortcut", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "如何快速评估饮食公司的营销策略效果?", + "category" : "question_category_shortcut", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + }, + { + "question" : "饮食公司如何快速调整以应对市场变化?", + "category" : "question_category_shortcut", + "main_purpose" : "分析饮食公司上市后的市场表现和挑战" + } + ], + "summary_type" : "MEETING", + "original_category" : "会议纪要", + "summary_id" : "20250625071508-v2@26337868f9362d731fce60", + "headline" : "会议:饮食公司上市后的变化与市场挑战" + }, + "summary" : null, + "ai_suggestion" : "AI已识别出会议中未解决或缺乏明确行动项的问题,请注意:\n1. 饮食公司如何应对市场竞争,尤其是与DJI的竞争,需进一步讨论以制定有效策略。\n2. 饮食公司需要进一步明确如何保持市场份额并证明其市值合理性,以确保公司持续增长。\n3. 饮食公司在市场竞争中面临的压力和挑战,需要深入分析并制定解决方案以降低风险。", + "language" : "简体中文", + "markdown" : "饮食公司 市场挑战 营销策略\n---\n## ⏰ 会议信息\n* 日期和时间: $[audio_start_time]\n* 地点:[输入地点]\n* 与会人员:[输入与会人员]\n## 📝 会议记录\n1. **饮食公司上市后的变化**\n 饮食公司上市时创下70倍PE市值,6月18日市值逼近800亿元,内部气氛依旧平静,员工继续忙碌。公司进行了较大范围的组织架构调整,重新整合多条产品线,并扩充了团队规模,旨在让员工快速适应公司的成长与规模化,以应对市场竞争。\n2. **饮食公司面临的市场挑战**\n 饮食公司面临巨大压力,前有DJI,后有追觅等竞争对手都在布局全景市场。IPO只是分水岭,公司需回答市场三个关键问题:如何应对来势汹汹的竞争对手、是否值70倍PE、未来能否守住市场份额。管理层(JK)在年会上承认在DJI面前仍是“弟弟”,但强调战术上重视、战略上要做好“跑马拉松”的准备,认为竞争对手带来的启发远大于其剥夺的东西。\n3. **饮食公司的营销策略**\n 饮食公司备战的第一步是先发制人,于4月抢先发布Insta360 X5,相较于前代产品缩短了发布周期。公司进一步强化产品和品牌营销,旨在让消费者形成“全景就是Insta360的天下”的认知。自今年2月以来,饮食公司不遗余力地为产品造势,通过广告投放加大市场渗透。坊间流传X5的广告预算远超以往,其营销基本覆盖了各个渠道的KOL。凭借新产品和大规模广告投入,X5发布初期取得了可观销量。饮食公司网罗了硬件3C领域绝大多数KOL,并逐渐形成了一套围绕KOL的营销方法论。\n4. **DJI的营销态度变化**\n DJI在营销上的态度曾模棱两可,时而强时而弱。坊间流传,其创始人汪涛不愿投入市场和品牌营销,因无法算清投入产出比,也不愿为KOL花钱,认为他们“躺着赚钱”。据熟悉DJI的人士透露,2020年以前DJI曾重视KOL营销,但后来合作项目停止,市场团队一度存在感低、人手凋零,且难以向汪涛证明市场预算的回报,导致市场人员“阵亡率”很高。DJI过去不重视营销,部分原因在于其在无人机市场的强势领导地位,汪涛认为只要产品领导力在,营销可有可无。然而,随着DJI不断推出新品牌,且竞争对手的战力指数提高,DJI意识到威胁,一反常态地通过加大市场营销投入来“穷追不舍”。\n## 📅 下一步安排\n- [ ] [输入更多内容]\n\n> **AI建议**\n> AI已识别出会议中未解决或缺乏明确行动项的问题,请注意:\n> 1. 饮食公司如何应对市场竞争,尤其是与DJI的竞争,需进一步讨论以制定有效策略。\n> 2. 饮食公司需要进一步明确如何保持市场份额并证明其市值合理性,以确保公司持续增长。\n> 3. 饮食公司在市场竞争中面临的压力和挑战,需要深入分析并制定解决方案以降低风险。", + "form" : { + "arrangements" : "📅 下一步安排", + "info" : "⏰ 会议信息", + "location" : "地点:[输入地点]", + "ai_suggestions" : "AI建议", + "insert_more" : "[输入更多内容]", + "notes" : "📝 会议记录", + "conclusion" : "结论", + "date_time" : "日期和时间:", + "attendees" : "与会人员:[输入与会人员]" + }, + "endpoint" : "azure-gpt-4o-sc", + "contents" : [ + { + "speaker_name_mapping" : [ + + ], + "arrangements" : [ + + ], + "topics" : [ + { + "topic" : "饮食公司上市后的变化", + "conclusion" : "", + "description" : "饮食公司上市后市值大涨至800亿元,内部气氛依旧平静,员工继续忙碌。公司进行了组织架构调整,扩充团队规模,以适应市场竞争。" + }, + { + "topic" : "饮食公司面临的市场挑战", + "conclusion" : "", + "description" : "饮食公司需要回答市场三个关键问题:如何应对竞争对手、是否值70倍PE、能否保持市场份额。管理层承认在DJI面前仍处于劣势,但强调战略重要性。" + }, + { + "topic" : "饮食公司的营销策略", + "conclusion" : "", + "description" : "饮食公司通过强化产品和品牌营销,形成全景相机市场的认知。X5产品发布后取得可观销量,广告预算较以往增加,覆盖各渠道KOL。" + }, + { + "topic" : "DJI的营销态度变化", + "conclusion" : "", + "description" : "DJI过去对KOL营销态度模棱两可,市场团队存在感低。随着竞争加剧,DJI开始加大市场营销投入。" + } + ], + "theme" : "饮食公司上市后的市场竞争与营销策略", + "ai_suggestion" : "未解决的问题:饮食公司如何应对市场竞争,尤其是与DJI的竞争。任务细节不明确:饮食公司需要进一步明确如何保持市场份额并证明其市值合理性。项目风险:饮食公司在市场竞争中面临的压力和挑战,需要进一步讨论和解决。" + } + ], + "model" : "gpt-4.1", + "text_lens" : 1661 + }, + "text" : "Speaker 1: 如何做产品怎么干,是JK去年与同僚的最多的话题,是销中上市时创下了70倍PE的市值6月18日饮食市值继续大涨逼近800亿元,资本市场再次一片狂欢,不同于其他公司上市后普发福利红包的热闹与喧嚣饮食公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目该加班的加班,不同的是,所有人都因为饮食换了一种身份。\nSpeaker 1: 而被受注目,上市这件事情和结婚一样意味着自己的义务变了,虽然兴奋但是身上的担子更重了,JK在采访里提到雷锋网了解到近两个月来饮食进行了一轮较大范围的组织架构调整将多条产品线进行重新整合多番调整下饮食又何变化欢迎添加微信和Q501一起交流,年初至今饮食的团队规模扩充了不少。\nSpeaker 1: 调整的过程虽有些波折但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化,从而去应对三家争霸饮食今年压力最大前有DJI 后有追秘都在布局全景相继有一次JK与众欣赏地说,我们需要全面备战一位饮食员工说道,赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难,而IPO只是一个分水岭。\nSpeaker 1: 如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题屋子里的大象来势汹汹饮食怎么应对,饮食到底值不值70倍的皮未来是否能守得住自己的市场份额,竞争如此胶着管理层是什么思考的,01,dji 濒临城下影视如何应对今年 jk 在年会上承认在 dji 面前他们确实还是弟弟承认归承认。\nSpeaker 1: jk 也同时在内部放话战术上重视战略上升为做好打印帐跑马拉松的准备,他认为就像人跑马拉松那个半跑的人或领跑的人还是很重要的,竞争对手给到你的启发远大于从你手上剥夺的东西,影视备战的第一步是先发之人因斯特360 x5在4月抢先发布这距离上一代产品x4发布仅过去一年的时间,要知道此前x2 x3两代的产品周期基本都是两年另一边。\nSpeaker 1: 影视进一步强化产品和品牌营销让消费者形成认知全景就是因斯特360的天下,今年二月以来影视开始不遗余力为产品造势小刀运动相机出,大到发布新的全景相机X5通过广告投放加大了对目标消费者的市场渗透,坊间流传,今年NST360 X5的广告预算比以往高出不少,雷锋网了解到,X5的广告营销。\nSpeaker 1: 基本覆盖了各个渠道的KOL,凭借全新的产品在大幅度的广告投流下影视X5发布初期就取得了比较可观的销量,大规模投放下X5销量情况如何,欢迎添加微信QQ501一起交流至少目前来看,影视的策略是有章法的,影视网罗了硬件3C领域绝大多数的KOL只要有新的KOL开始冒头都会被影视抢先遣下在长期重视营销的结果下。\nSpeaker 1: 影视逐渐形成了一套围绕KOL的营销方法论,而对面的DJI在营销上的态度始终模棱两可时而强,时而入此前方健有说法称营销曾经是DJI的眼前的公司不开展会汪涛也不会在公众露面市场他也不愿意投品牌也不投,因为汪涛算不清楚这笔账的投入和产出比算不清楚他就不投,汪涛不愿意给KOL花钱他觉得这些人什么都没干。\nSpeaker 1: 躺着就赚了DJI的钱,谁都不能躺着赚我的钱,熟悉DJI的人是李洋向雷锋网投,2020年以前DJI是比较重视KOL营销的很多渠道的KOL都投了,谢家走了之后这些合作项目就都停了,很长一段时间里DJI的市场团队一度是最没有存在感的部分,人手凋零没几个人对这些人来说要想在汪涛那里拿到市场预算就得向汪涛证明。\nSpeaker 1: 这些预算投了出去能得到多少钱的回报这个问题没有人能回答出来也因此,dji的市场人员阵亡率很高某种程度上 dji不太重视营销与他在无人机市场的强势领导地位有关,王涛认为只要产品领导力在营销就是可有可无的但当dji开始不断拖新品牌竞争对手的战力指数也更高时,几乎没有人能忽视营销的buff 意识到威胁后现在的dji也一反常态通过加大市场营销投入穷追不舍。\nSpeaker 1: 2024年火爆全网络的炮" + }, + "start_time" : 1750835707579, + "end_time" : 1750835761292, + "task_id" : "task_b702b0b5-4493-495e-8eda-45eb58213965" + } + ], + "file_id" : "file_3c57ce78-4860-4efb-8e2b-e394e9d5ea55" +} + + +type2: +{ + "status" : "SUCCESS", + "id" : "wf_f4d449c4-ce10-4409-971c-9f7f2efa56d0", + "owner_id" : "test-001", + "metadata_json" : { + + }, + "tasks" : [ + { + "task_type" : "audio_transcribe", + "status" : "SUCCESS", + "result" : { + "segments" : [ + { + "start" : 1.5700000000000001, + "speaker" : "speaker_1", + "end" : 2.3199999999999998, + "text" : "如何做产品?" + }, + { + "start" : 2.3999999999999999, + "speaker" : "speaker_1", + "end" : 3, + "text" : "怎么干?" + }, + { + "start" : 3.1600000000000001, + "speaker" : "speaker_1", + "end" : 6.7599999999999998, + "text" : "DJI 是 JK 去年与投资人聊的最多的话题。" + }, + { + "start" : 8.0690000000000008, + "speaker" : "speaker_1", + "end" : 10.898999999999999, + "text" : "直销中上市时创下了70倍 PE 的市值。" + }, + { + "start" : 11.179, + "speaker" : "speaker_1", + "end" : 16.818999999999999, + "text" : "6月18日,饮食市值继续大涨,逼近800亿元,资本市场再次一片狂欢。" + }, + { + "start" : 18.059999999999999, + "speaker" : "speaker_1", + "end" : 27.690000000000001, + "text" : "不同于其他公司上市后普发福利红包的热闹与喧嚣,影视公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目。" + }, + { + "start" : 28.23, + "speaker" : "speaker_1", + "end" : 34.299999999999997, + "text" : "该加班的加班,不同的是,所有人都因为饮食换了一种身份而备受瞩目。" + }, + { + "start" : 35.299999999999997, + "speaker" : "speaker_1", + "end" : 39.100000000000001, + "text" : "上市这件事情和结婚一样,意味着自己的义务变了。" + }, + { + "start" : 39.909999999999997, + "speaker" : "speaker_1", + "end" : 42.469999999999999, + "text" : "虽然兴奋,但是身上的担子更重了。" + }, + { + "start" : 43.189999999999998, + "speaker" : "speaker_1", + "end" : 51.229999999999997, + "text" : "JK 在采访里提到,雷锋网了解到,近两个月来,影视进行了一轮较大范围的组织架构调整。" + }, + { + "start" : 51.759999999999998, + "speaker" : "speaker_1", + "end" : 57.359999999999999, + "text" : "将多条产品线进行重新整合,多番调整下饮食有何变化?" + }, + { + "start" : 57.560000000000002, + "speaker" : "speaker_1", + "end" : 60.359999999999999, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 60.719999999999999, + "speaker" : "speaker_1", + "end" : 72.599999999999994, + "text" : "年初至今饮食的团队规模扩充了不少,调整的过程虽有些波折,但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化。" + }, + { + "start" : 73.090000000000003, + "speaker" : "speaker_1", + "end" : 80.969999999999999, + "text" : "从而去应对三家争霸,饮食今年压力最大,前有 DJI 后有追觅,都在布局全景相机。" + }, + { + "start" : 81.329999999999998, + "speaker" : "speaker_1", + "end" : 83.689999999999998, + "text" : "有一次 JK 语重心长地说。" + }, + { + "start" : 84.040000000000006, + "speaker" : "speaker_1", + "end" : 87.629999999999995, + "text" : "我们需要全面备战,一位饮食员工说道。" + }, + { + "start" : 88.269999999999996, + "speaker" : "speaker_1", + "end" : 93.629999999999995, + "text" : "赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难。" + }, + { + "start" : 94.040000000000006, + "speaker" : "speaker_1", + "end" : 95.510000000000005, + "text" : "而 IPO 只是一个分水岭。" + }, + { + "start" : 96.510000000000005, + "speaker" : "speaker_1", + "end" : 104.43000000000001, + "text" : "如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题。" + }, + { + "start" : 105.23999999999999, + "speaker" : "speaker_1", + "end" : 108.52, + "text" : "屋子里的大象来势汹汹,饮食怎么应对?" + }, + { + "start" : 109.23999999999999, + "speaker" : "speaker_1", + "end" : 114.2, + "text" : "饮食到底值不值70倍的 PE 未来是否能守得住自己的市场份额?" + }, + { + "start" : 114.92, + "speaker" : "speaker_1", + "end" : 116, + "text" : "竞争如此胶灼。" + }, + { + "start" : 116.59999999999999, + "speaker" : "speaker_1", + "end" : 118, + "text" : "管理层是什么思考呢?" + }, + { + "start" : 118.8, + "speaker" : "speaker_1", + "end" : 123.04000000000001, + "text" : "0 DJI 兵临城下,饮食如何应对?" + }, + { + "start" : 123.64, + "speaker" : "speaker_1", + "end" : 128.03999999999999, + "text" : "今年 JK 在年会上承认,在 DJI 面前他们确实还是弟弟。" + }, + { + "start" : 128.88, + "speaker" : "speaker_1", + "end" : 129.96000000000001, + "text" : "承认归承认。" + }, + { + "start" : 130.47, + "speaker" : "speaker_1", + "end" : 137.91, + "text" : "JK 也同时在内部放话,战术上重视,战略上升维,做好打硬仗、跑马拉松的准备。" + }, + { + "start" : 138.55000000000001, + "speaker" : "speaker_1", + "end" : 140.71000000000001, + "text" : "他认为就像人跑马拉松。" + }, + { + "start" : 141.11000000000001, + "speaker" : "speaker_1", + "end" : 144.13999999999999, + "text" : "那个半跑的人或领跑的人还是很重要的。" + }, + + { + "start" : 144.41999999999999, + "speaker" : "speaker_1", + "end" : 148.62, + "text" : "竞争对手给到你的启发远大于从你手上剥夺的东西。" + }, + { + "start" : 149.5, + "speaker" : "speaker_1", + "end" : 151.66, + "text" : "饮食备战的第一步是先发制人。" + }, + { + "start" : 153.08000000000001, + "speaker" : "speaker_1", + "end" : 159.80000000000001, + "text" : "Insta 3六0 x 五在4月抢先发布,这距离上一代产品 X4发布仅过去一年的时间。" + }, + { + "start" : 160.03999999999999, + "speaker" : "speaker_1", + "end" : 164.75999999999999, + "text" : "要知道此前 X2、X3两代的产品周期基本都是2年。" + }, + { + "start" : 165.63999999999999, + "speaker" : "speaker_1", + "end" : 174.34999999999999, + "text" : "另一边,饮食进一步强化产品和品牌营销,让消费者形成认知,全景就是 Instar 360的天下。" + }, + { + "start" : 174.94999999999999, + "speaker" : "speaker_1", + "end" : 187.75, + "text" : "今年2月以来影石开始不遗余力为产品造势,小到运动相机出了个手柄配件,大到发布新的全景相机 X5,通过广告投放加大了对目标消费者的市场渗透。" + }, + { + "start" : 188.739, + "speaker" : "speaker_1", + "end" : 199.84999999999999, + "text" : "雷锋网了解到,X5的广告营销基本覆盖了各个渠道的 KOL。" + }, + { + "start" : 188.84999999999999, + "speaker" : "speaker_1", + "end" : 194.21000000000001, + "text" : "坊间流传,今年 NST 三六零 x 五的广告预算比以往高出不少。" + }, + { + "start" : 201.21000000000001, + "speaker" : "speaker_1", + "end" : 208.72999999999999, + "text" : "凭借全新的产品,在大幅度的广告投流下,影石 X5发布初期就取得了比较可观的销量。" + }, + { + "start" : 209.28999999999999, + "speaker" : "speaker_1", + "end" : 212.09, + "text" : "大规模投放下,X5销量情况如何?" + }, + { + "start" : 212.50899999999999, + "speaker" : "speaker_1", + "end" : 223.02000000000001, + "text" : "饮食网罗了硬件3C 领域绝大多数的 KOL。" + }, + { + "start" : 212.53999999999999, + "speaker" : "speaker_1", + "end" : 215.30000000000001, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 215.81999999999999, + "speaker" : "speaker_1", + "end" : 219.34, + "text" : "至少目前来看,饮食的策略是有章法的。" + }, + { + "start" : 223.68000000000001, + "speaker" : "speaker_1", + "end" : 227.72, + "text" : "只要有新的 KOL 开始冒头,都会被饮食抢先签下。" + }, + { + "start" : 228.40000000000001, + "speaker" : "speaker_1", + "end" : 234.44, + "text" : "在长期重视营销的结果下,饮食逐渐形成了一套围绕 KOL 的营销方法论。" + }, + { + "start" : 235.41, + "speaker" : "speaker_1", + "end" : 240.80000000000001, + "text" : "而对面的 DGI 在营销上的态度始终模棱两可,时而强,时而弱。" + }, + { + "start" : 241.36000000000001, + "speaker" : "speaker_1", + "end" : 245.19999999999999, + "text" : "此前坊间有说法称营销曾经是 DGI 的盐碱地。" + }, + { + "start" : 245.78, + "speaker" : "speaker_1", + "end" : 255.46000000000001, + "text" : "公司不开展会,汪涛也不会在公众露面,市场他也不愿意投,品牌也不投,因为汪涛算不清楚这笔账的投入和产出比。" + }, + { + "start" : 255.83000000000001, + "speaker" : "speaker_1", + "end" : 257.02999999999997, + "text" : "算不清楚他就不投。" + }, + { + "start" : 257.91000000000003, + "speaker" : "speaker_1", + "end" : 265.67000000000002, + "text" : "王涛不愿意给 KOL 花钱,他觉得这些人什么都没干,躺着就赚了 DJI 的钱,谁都不能躺着赚我的钱。" + }, + { + "start" : 266.39999999999998, + "speaker" : "speaker_1", + "end" : 275.12, + "text" : "熟悉 DGI 的人士李阳向雷锋网透露,2020年以前,DGI 是比较重视 KOL 营销的,很多渠道的 KOL 都投了。" + }, + { + "start" : 275.92000000000002, + "speaker" : "speaker_1", + "end" : 279.14999999999998, + "text" : "谢佳走了之后这些合作项目就都停了。" + }, + { + "start" : 279.67000000000002, + "speaker" : "speaker_1", + "end" : 286.91000000000003, + "text" : "很长一段时间里,DGI 的市场团队一度是最没有存在感的部门,人手凋零,没几个人。" + }, + { + "start" : 287.68000000000001, + "speaker" : "speaker_1", + "end" : 298.43000000000001, + "text" : "对这些人来说,要想在汪涛那里拿到市场预算,就得向汪涛证明这些预算投了出去能得到多少钱的回报,这个问题没有人能回答出来。" + }, + { + "start" : 299.18000000000001, + "speaker" : "speaker_1", + "end" : 302.41000000000003, + "text" : "也因此,DJI 的市场人员阵亡率很高。" + }, + { + "start" : 303.00999999999999, + "speaker" : "speaker_1", + "end" : 309.29000000000002, + "text" : "某种程度上,DJI 不太重视营销,与它在无人机市场的强势领导地位有关。" + }, + { + "start" : 310.02999999999997, + "speaker" : "speaker_1", + "end" : 314.43000000000001, + "text" : "王涛认为,只要产品领导力在,营销就是可有可无的。" + }, + { + "start" : 314.75, + "speaker" : "speaker_1", + "end" : 319.58999999999997, + "text" : "但当 DGI 开始不断拓新品类,竞争对手的战力指数也更高时。" + }, + { + "start" : 320.13999999999999, + "speaker" : "speaker_1", + "end" : 329.22000000000003, + "text" : "几乎没有人能忽视营销的 buff 意识到威胁后,现在的 DGI 也一反常态,通过加大市场营销投入,穷追不舍。" + }, + { + "start" : 330.26999999999998, + "speaker" : "speaker_1", + "end" : 332.23000000000002, + "text" : "2024年火爆全网络的 pop" + } + ] + }, + "start_time" : 1750835827056, + "end_time" : 1750835868313, + "task_id" : "task_b0e404c5-cf03-4a80-973b-ba36585637c2" + } + ], + "file_id" : "file_3c57ce78-4860-4efb-8e2b-e394e9d5ea55" +} + + +type3: +{ + "status" : "SUCCESS", + "id" : "wf_6d3b16fc-1fd3-41ad-a822-50035761048b", + "owner_id" : "test-001", + "metadata_json" : { + + }, + "tasks" : [ + { + "task_type" : "audio_transcribe", + "status" : "SUCCESS", + "result" : { + "segments" : [ + { + "start" : 1.5700000000000001, + "speaker" : "speaker_1", + "end" : 2.3199999999999998, + "text" : "如何做产品?" + }, + { + "start" : 2.3999999999999999, + "speaker" : "speaker_1", + "end" : 3, + "text" : "怎么干?" + }, + { + "start" : 3.1600000000000001, + "speaker" : "speaker_1", + "end" : 6.7599999999999998, + "text" : "DJI 是 JK 去年与投资人聊的最多的话题。" + }, + { + "start" : 8.0690000000000008, + "speaker" : "speaker_1", + "end" : 10.898999999999999, + "text" : "直销中上市时创下了70倍 PE 的市值。" + }, + { + "start" : 11.179, + "speaker" : "speaker_1", + "end" : 16.818999999999999, + "text" : "6月18日,饮食市值继续大涨,逼近800亿元,资本市场再次一片狂欢。" + }, + { + "start" : 18.059999999999999, + "speaker" : "speaker_1", + "end" : 27.690000000000001, + "text" : "不同于其他公司上市后普发福利红包的热闹与喧嚣,影视公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目。" + }, + { + "start" : 28.23, + "speaker" : "speaker_1", + "end" : 34.299999999999997, + "text" : "该加班的加班,不同的是,所有人都因为饮食换了一种身份而备受瞩目。" + }, + { + "start" : 35.299999999999997, + "speaker" : "speaker_1", + "end" : 39.100000000000001, + "text" : "上市这件事情和结婚一样,意味着自己的义务变了。" + }, + { + "start" : 39.909999999999997, + "speaker" : "speaker_1", + "end" : 42.469999999999999, + "text" : "虽然兴奋,但是身上的担子更重了。" + }, + { + "start" : 43.189999999999998, + "speaker" : "speaker_1", + "end" : 51.229999999999997, + "text" : "JK 在采访里提到,雷锋网了解到,近两个月来,影视进行了一轮较大范围的组织架构调整。" + }, + { + "start" : 51.759999999999998, + "speaker" : "speaker_1", + "end" : 57.359999999999999, + "text" : "将多条产品线进行重新整合,多番调整下饮食有何变化?" + }, + { + "start" : 57.560000000000002, + "speaker" : "speaker_1", + "end" : 60.359999999999999, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 60.719999999999999, + "speaker" : "speaker_1", + "end" : 72.599999999999994, + "text" : "年初至今饮食的团队规模扩充了不少,调整的过程虽有些波折,但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化。" + }, + { + "start" : 73.090000000000003, + "speaker" : "speaker_1", + "end" : 80.969999999999999, + "text" : "从而去应对三家争霸,饮食今年压力最大,前有 DJI 后有追觅,都在布局全景相机。" + }, + { + "start" : 81.329999999999998, + "speaker" : "speaker_1", + "end" : 83.689999999999998, + "text" : "有一次 JK 语重心长地说。" + }, + { + "start" : 84.040000000000006, + "speaker" : "speaker_1", + "end" : 87.629999999999995, + "text" : "我们需要全面备战,一位饮食员工说道。" + }, + { + "start" : 88.269999999999996, + "speaker" : "speaker_1", + "end" : 93.629999999999995, + "text" : "赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难。" + }, + { + "start" : 94.040000000000006, + "speaker" : "speaker_1", + "end" : 95.510000000000005, + "text" : "而 IPO 只是一个分水岭。" + }, + { + "start" : 96.510000000000005, + "speaker" : "speaker_1", + "end" : 104.43000000000001, + "text" : "如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题。" + }, + { + "start" : 105.23999999999999, + "speaker" : "speaker_1", + "end" : 108.52, + "text" : "屋子里的大象来势汹汹,饮食怎么应对?" + }, + { + "start" : 109.23999999999999, + "speaker" : "speaker_1", + "end" : 114.2, + "text" : "饮食到底值不值70倍的 PE 未来是否能守得住自己的市场份额?" + }, + { + "start" : 114.92, + "speaker" : "speaker_1", + "end" : 116, + "text" : "竞争如此胶灼。" + }, + { + "start" : 116.59999999999999, + "speaker" : "speaker_1", + "end" : 118, + "text" : "管理层是什么思考呢?" + }, + { + "start" : 118.8, + "speaker" : "speaker_1", + "end" : 123.04000000000001, + "text" : "0 DJI 兵临城下,饮食如何应对?" + }, + { + "start" : 123.64, + "speaker" : "speaker_1", + "end" : 128.03999999999999, + "text" : "今年 JK 在年会上承认,在 DJI 面前他们确实还是弟弟。" + }, + { + "start" : 128.88, + "speaker" : "speaker_1", + "end" : 129.96000000000001, + "text" : "承认归承认。" + }, + { + "start" : 130.47, + "speaker" : "speaker_1", + "end" : 137.91, + "text" : "JK 也同时在内部放话,战术上重视,战略上升维,做好打硬仗、跑马拉松的准备。" + }, + { + "start" : 138.55000000000001, + "speaker" : "speaker_1", + "end" : 140.71000000000001, + "text" : "他认为就像人跑马拉松。" + }, + { + "start" : 141.11000000000001, + "speaker" : "speaker_1", + "end" : 144.13999999999999, + "text" : "那个半跑的人或领跑的人还是很重要的。" + }, + + { + "start" : 144.41999999999999, + "speaker" : "speaker_1", + "end" : 148.62, + "text" : "竞争对手给到你的启发远大于从你手上剥夺的东西。" + }, + { + "start" : 149.5, + "speaker" : "speaker_1", + "end" : 151.66, + "text" : "饮食备战的第一步是先发制人。" + }, + { + "start" : 153.08000000000001, + "speaker" : "speaker_1", + "end" : 159.80000000000001, + "text" : "Insta 3六0 x 五在4月抢先发布,这距离上一代产品 X4发布仅过去一年的时间。" + }, + { + "start" : 160.03999999999999, + "speaker" : "speaker_1", + "end" : 164.75999999999999, + "text" : "要知道此前 X2、X3两代的产品周期基本都是2年。" + }, + { + "start" : 165.63999999999999, + "speaker" : "speaker_1", + "end" : 174.34999999999999, + "text" : "另一边,饮食进一步强化产品和品牌营销,让消费者形成认知,全景就是 Instar 360的天下。" + }, + { + "start" : 174.94999999999999, + "speaker" : "speaker_1", + "end" : 187.75, + "text" : "今年2月以来影石开始不遗余力为产品造势,小到运动相机出了个手柄配件,大到发布新的全景相机 X5,通过广告投放加大了对目标消费者的市场渗透。" + }, + { + "start" : 188.739, + "speaker" : "speaker_1", + "end" : 199.84999999999999, + "text" : "雷锋网了解到,X5的广告营销基本覆盖了各个渠道的 KOL。" + }, + { + "start" : 188.84999999999999, + "speaker" : "speaker_1", + "end" : 194.21000000000001, + "text" : "坊间流传,今年 NST 三六零 x 五的广告预算比以往高出不少。" + }, + { + "start" : 201.21000000000001, + "speaker" : "speaker_1", + "end" : 208.72999999999999, + "text" : "凭借全新的产品,在大幅度的广告投流下,影石 X5发布初期就取得了比较可观的销量。" + }, + { + "start" : 209.28999999999999, + "speaker" : "speaker_1", + "end" : 212.09, + "text" : "大规模投放下,X5销量情况如何?" + }, + { + "start" : 212.50899999999999, + "speaker" : "speaker_1", + "end" : 223.02000000000001, + "text" : "饮食网罗了硬件3C 领域绝大多数的 KOL。" + }, + { + "start" : 212.53999999999999, + "speaker" : "speaker_1", + "end" : 215.30000000000001, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 215.81999999999999, + "speaker" : "speaker_1", + "end" : 219.34, + "text" : "至少目前来看,饮食的策略是有章法的。" + }, + { + "start" : 223.68000000000001, + "speaker" : "speaker_1", + "end" : 227.72, + "text" : "只要有新的 KOL 开始冒头,都会被饮食抢先签下。" + }, + { + "start" : 228.40000000000001, + "speaker" : "speaker_1", + "end" : 234.44, + "text" : "在长期重视营销的结果下,饮食逐渐形成了一套围绕 KOL 的营销方法论。" + }, + { + "start" : 235.41, + "speaker" : "speaker_1", + "end" : 240.80000000000001, + "text" : "而对面的 DGI 在营销上的态度始终模棱两可,时而强,时而弱。" + }, + { + "start" : 241.36000000000001, + "speaker" : "speaker_1", + "end" : 245.19999999999999, + "text" : "此前坊间有说法称营销曾经是 DGI 的盐碱地。" + }, + { + "start" : 245.78, + "speaker" : "speaker_1", + "end" : 255.46000000000001, + "text" : "公司不开展会,汪涛也不会在公众露面,市场他也不愿意投,品牌也不投,因为汪涛算不清楚这笔账的投入和产出比。" + }, + { + "start" : 255.83000000000001, + "speaker" : "speaker_1", + "end" : 257.02999999999997, + "text" : "算不清楚他就不投。" + }, + { + "start" : 257.91000000000003, + "speaker" : "speaker_1", + "end" : 265.67000000000002, + "text" : "王涛不愿意给 KOL 花钱,他觉得这些人什么都没干,躺着就赚了 DJI 的钱,谁都不能躺着赚我的钱。" + }, + { + "start" : 266.39999999999998, + "speaker" : "speaker_1", + "end" : 275.12, + "text" : "熟悉 DGI 的人士李阳向雷锋网透露,2020年以前,DGI 是比较重视 KOL 营销的,很多渠道的 KOL 都投了。" + }, + { + "start" : 275.92000000000002, + "speaker" : "speaker_1", + "end" : 279.14999999999998, + "text" : "谢佳走了之后这些合作项目就都停了。" + }, + { + "start" : 279.67000000000002, + "speaker" : "speaker_1", + "end" : 286.91000000000003, + "text" : "很长一段时间里,DGI 的市场团队一度是最没有存在感的部门,人手凋零,没几个人。" + }, + { + "start" : 287.68000000000001, + "speaker" : "speaker_1", + "end" : 298.43000000000001, + "text" : "对这些人来说,要想在汪涛那里拿到市场预算,就得向汪涛证明这些预算投了出去能得到多少钱的回报,这个问题没有人能回答出来。" + }, + { + "start" : 299.18000000000001, + "speaker" : "speaker_1", + "end" : 302.41000000000003, + "text" : "也因此,DJI 的市场人员阵亡率很高。" + }, + { + "start" : 303.00999999999999, + "speaker" : "speaker_1", + "end" : 309.29000000000002, + "text" : "某种程度上,DJI 不太重视营销,与它在无人机市场的强势领导地位有关。" + }, + { + "start" : 310.02999999999997, + "speaker" : "speaker_1", + "end" : 314.43000000000001, + "text" : "王涛认为,只要产品领导力在,营销就是可有可无的。" + }, + { + "start" : 314.75, + "speaker" : "speaker_1", + "end" : 319.58999999999997, + "text" : "但当 DGI 开始不断拓新品类,竞争对手的战力指数也更高时。" + }, + { + "start" : 320.13999999999999, + "speaker" : "speaker_1", + "end" : 329.22000000000003, + "text" : "几乎没有人能忽视营销的 buff 意识到威胁后,现在的 DGI 也一反常态,通过加大市场营销投入,穷追不舍。" + }, + { + "start" : 330.26999999999998, + "speaker" : "speaker_1", + "end" : 332.23000000000002, + "text" : "2024年火爆全网络的 pop" + } + ] + }, + "start_time" : 1750836108518, + "end_time" : 1750836149644, + "task_id" : "task_7e7d474a-22b1-49c7-bdb6-fc86cf25f68c" + }, + { + "task_type" : "ai_etl", + "status" : "SUCCESS", + "result" : { + "assessment_treatment_pairs" : [ + + ], + "appellation" : "客户", + "communication_feedback" : { + "highlight" : "无医美相关沟通内容,无法识别有效亮点。", + "suggestion" : "对话内容严重偏离主题,建议加强咨询师专业培训和流程管理。" + }, + "clinical_report" : "【接诊医生】\n无相关信息\n\n【接诊咨询师】\n无相关信息\n\n【客户信息】\n无相关信息\n\n【主诉检查】\n无相关信息\n\n【治疗方案】\n无相关信息\n\n【后续建议】\n1. 核实对话录音是否存在上传错误\n2. 重新培训咨询师掌握基础医美知识及对话引导技巧\n3. 建立咨询前问卷筛选机制,避免无效咨询占用资源", + "mapped" : { + + }, + "transcription" : { + "segments" : [ + { + "start" : 1.5700000000000001, + "speaker" : "咨询师", + "end" : 2.3199999999999998, + "index" : 1, + "text" : "如何做产品?" + }, + { + "start" : 2.3999999999999999, + "speaker" : "咨询师", + "end" : 3, + "index" : 2, + "text" : "怎么干?" + }, + { + "start" : 3.1600000000000001, + "speaker" : "咨询师", + "end" : 6.7599999999999998, + "index" : 3, + "text" : "DJI 是 JK 去年与投资人聊的最多的话题。" + }, + { + "start" : 8.0690000000000008, + "speaker" : "咨询师", + "end" : 10.898999999999999, + "index" : 4, + "text" : "直销中上市时创下了70倍 PE 的市值。" + }, + { + "start" : 11.179, + "speaker" : "咨询师", + "end" : 16.818999999999999, + "index" : 5, + "text" : "6月18日,饮食市值继续大涨,逼近800亿元,资本市场再次一片狂欢。" + }, + { + "start" : 18.059999999999999, + "speaker" : "咨询师", + "end" : 27.690000000000001, + "index" : 6, + "text" : "不同于其他公司上市后普发福利红包的热闹与喧嚣,影视公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目。" + }, + { + "start" : 28.23, + "speaker" : "咨询师", + "end" : 34.299999999999997, + "index" : 7, + "text" : "该加班的加班,不同的是,所有人都因为饮食换了一种身份而备受瞩目。" + }, + { + "start" : 35.299999999999997, + "speaker" : "咨询师", + "end" : 39.100000000000001, + "index" : 8, + "text" : "上市这件事情和结婚一样,意味着自己的义务变了。" + }, + { + "start" : 39.909999999999997, + "speaker" : "咨询师", + "end" : 42.469999999999999, + "index" : 9, + "text" : "虽然兴奋,但是身上的担子更重了。" + }, + { + "start" : 43.189999999999998, + "speaker" : "咨询师", + "end" : 51.229999999999997, + "index" : 10, + "text" : "JK 在采访里提到,雷锋网了解到,近两个月来,影视进行了一轮较大范围的组织架构调整。" + }, + { + "start" : 51.759999999999998, + "speaker" : "咨询师", + "end" : 57.359999999999999, + "index" : 11, + "text" : "将多条产品线进行重新整合,多番调整下饮食有何变化?" + }, + { + "start" : 57.560000000000002, + "speaker" : "咨询师", + "end" : 60.359999999999999, + "index" : 12, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 60.719999999999999, + "speaker" : "咨询师", + "end" : 72.599999999999994, + "index" : 13, + "text" : "年初至今饮食的团队规模扩充了不少,调整的过程虽有些波折,但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化。" + }, + { + "start" : 73.090000000000003, + "speaker" : "咨询师", + "end" : 80.969999999999999, + "index" : 14, + "text" : "从而去应对三家争霸,饮食今年压力最大,前有 DJI 后有追觅,都在布局全景相机。" + }, + { + "start" : 81.329999999999998, + "speaker" : "咨询师", + "end" : 83.689999999999998, + "index" : 15, + "text" : "有一次 JK 语重心长地说。" + }, + { + "start" : 84.040000000000006, + "speaker" : "咨询师", + "end" : 87.629999999999995, + "index" : 16, + "text" : "我们需要全面备战,一位饮食员工说道。" + }, + { + "start" : 88.269999999999996, + "speaker" : "咨询师", + "end" : 93.629999999999995, + "index" : 17, + "text" : "赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难。" + }, + { + "start" : 94.040000000000006, + "speaker" : "咨询师", + "end" : 95.510000000000005, + "index" : 18, + "text" : "而 IPO 只是一个分水岭。" + }, + { + "start" : 96.510000000000005, + "speaker" : "咨询师", + "end" : 104.43000000000001, + "index" : 19, + "text" : "如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题。" + }, + { + "start" : 105.23999999999999, + "speaker" : "咨询师", + "end" : 108.52, + "index" : 20, + "text" : "屋子里的大象来势汹汹,饮食怎么应对?" + }, + { + "start" : 109.23999999999999, + "speaker" : "咨询师", + "end" : 114.2, + "index" : 21, + "text" : "饮食到底值不值70倍的 PE 未来是否能守得住自己的市场份额?" + }, + { + "start" : 114.92, + "speaker" : "咨询师", + "end" : 116, + "index" : 22, + "text" : "竞争如此胶灼。" + }, + { + "start" : 116.59999999999999, + "speaker" : "咨询师", + "end" : 118, + "index" : 23, + "text" : "管理层是什么思考呢?" + }, + { + "start" : 118.8, + "speaker" : "咨询师", + "end" : 123.04000000000001, + "index" : 24, + "text" : "0 DJI 兵临城下,饮食如何应对?" + }, + { + "start" : 123.64, + "speaker" : "咨询师", + "end" : 128.03999999999999, + "index" : 25, + "text" : "今年 JK 在年会上承认,在 DJI 面前他们确实还是弟弟。" + }, + { + "start" : 128.88, + "speaker" : "咨询师", + "end" : 129.96000000000001, + "index" : 26, + "text" : "承认归承认。" + }, + { + "start" : 130.47, + "speaker" : "咨询师", + "end" : 137.91, + "index" : 27, + "text" : "JK 也同时在内部放话,战术上重视,战略上升维,做好打硬仗、跑马拉松的准备。" + }, + { + "start" : 138.55000000000001, + "speaker" : "咨询师", + "end" : 140.71000000000001, + "index" : 28, + "text" : "他认为就像人跑马拉松。" + }, + { + "start" : 141.11000000000001, + "speaker" : "咨询师", + "end" : 144.13999999999999, + "index" : 29, + "text" : "那个半跑的人或领跑的人还是很重要的。" + }, + { + "start" : 144.41999999999999, + "speaker" : "咨询师", + "end" : 148.62, + "index" : 30, + "text" : "竞争对手给到你的启发远大于从你手上剥夺的东西。" + }, + { + "start" : 149.5, + "speaker" : "咨询师", + "end" : 151.66, + "index" : 31, + "text" : "饮食备战的第一步是先发制人。" + }, + { + "start" : 153.08000000000001, + "speaker" : "咨询师", + "end" : 159.80000000000001, + "index" : 32, + "text" : "Insta 3六0 x 五在4月抢先发布,这距离上一代产品 X4发布仅过去一年的时间。" + }, + { + "start" : 160.03999999999999, + "speaker" : "咨询师", + "end" : 164.75999999999999, + "index" : 33, + "text" : "要知道此前 X2、X3两代的产品周期基本都是2年。" + }, + { + "start" : 165.63999999999999, + "speaker" : "咨询师", + "end" : 174.34999999999999, + "index" : 34, + "text" : "另一边,饮食进一步强化产品和品牌营销,让消费者形成认知,全景就是 Instar 360的天下。" + }, + { + "start" : 174.94999999999999, + "speaker" : "咨询师", + "end" : 187.75, + "index" : 35, + "text" : "今年2月以来影石开始不遗余力为产品造势,小到运动相机出了个手柄配件,大到发布新的全景相机 X5,通过广告投放加大了对目标消费者的市场渗透。" + }, + { + "start" : 188.739, + "speaker" : "咨询师", + "end" : 199.84999999999999, + "index" : 36, + "text" : "雷锋网了解到,X5的广告营销基本覆盖了各个渠道的 KOL。" + }, + { + "start" : 188.84999999999999, + "speaker" : "咨询师", + "end" : 194.21000000000001, + "index" : 37, + "text" : "坊间流传,今年 NST 三六零 x 五的广告预算比以往高出不少。" + }, + { + "start" : 201.21000000000001, + "speaker" : "咨询师", + "end" : 208.72999999999999, + "index" : 38, + "text" : "凭借全新的产品,在大幅度的广告投流下,影石 X5发布初期就取得了比较可观的销量。" + }, + { + "start" : 209.28999999999999, + "speaker" : "咨询师", + "end" : 212.09, + "index" : 39, + "text" : "大规模投放下,X5销量情况如何?" + }, + { + "start" : 212.50899999999999, + "speaker" : "咨询师", + "end" : 223.02000000000001, + "index" : 40, + "text" : "饮食网罗了硬件3C 领域绝大多数的 KOL。" + }, + { + "start" : 212.53999999999999, + "speaker" : "咨询师", + "end" : 215.30000000000001, + "index" : 41, + "text" : "欢迎添加微信 QQ501一起交流。" + }, + { + "start" : 215.81999999999999, + "speaker" : "咨询师", + "end" : 219.34, + "index" : 42, + + "text" : "至少目前来看,饮食的策略是有章法的。" + }, + { + "start" : 223.68000000000001, + "speaker" : "咨询师", + "end" : 227.72, + "index" : 43, + "text" : "只要有新的 KOL 开始冒头,都会被饮食抢先签下。" + }, + { + "start" : 228.40000000000001, + "speaker" : "咨询师", + "end" : 234.44, + "index" : 44, + "text" : "在长期重视营销的结果下,饮食逐渐形成了一套围绕 KOL 的营销方法论。" + }, + { + "start" : 235.41, + "speaker" : "咨询师", + "end" : 240.80000000000001, + "index" : 45, + "text" : "而对面的 DGI 在营销上的态度始终模棱两可,时而强,时而弱。" + }, + { + "start" : 241.36000000000001, + "speaker" : "咨询师", + "end" : 245.19999999999999, + "index" : 46, + "text" : "此前坊间有说法称营销曾经是 DGI 的盐碱地。" + }, + { + "start" : 245.78, + "speaker" : "咨询师", + "end" : 255.46000000000001, + "index" : 47, + "text" : "公司不开展会,汪涛也不会在公众露面,市场他也不愿意投,品牌也不投,因为汪涛算不清楚这笔账的投入和产出比。" + }, + { + "start" : 255.83000000000001, + "speaker" : "咨询师", + "end" : 257.02999999999997, + "index" : 48, + "text" : "算不清楚他就不投。" + }, + { + "start" : 257.91000000000003, + "speaker" : "咨询师", + "end" : 265.67000000000002, + "index" : 49, + "text" : "王涛不愿意给 KOL 花钱,他觉得这些人什么都没干,躺着就赚了 DJI 的钱,谁都不能躺着赚我的钱。" + }, + { + "start" : 266.39999999999998, + "speaker" : "咨询师", + "end" : 275.12, + "index" : 50, + "text" : "熟悉 DGI 的人士李阳向雷锋网透露,2020年以前,DGI 是比较重视 KOL 营销的,很多渠道的 KOL 都投了。" + }, + { + "start" : 275.92000000000002, + "speaker" : "咨询师", + "end" : 279.14999999999998, + "index" : 51, + "text" : "谢佳走了之后这些合作项目就都停了。" + }, + { + "start" : 279.67000000000002, + "speaker" : "咨询师", + "end" : 286.91000000000003, + "index" : 52, + "text" : "很长一段时间里,DGI 的市场团队一度是最没有存在感的部门,人手凋零,没几个人。" + }, + { + "start" : 287.68000000000001, + "speaker" : "咨询师", + "end" : 298.43000000000001, + "index" : 53, + "text" : "对这些人来说,要想在汪涛那里拿到市场预算,就得向汪涛证明这些预算投了出去能得到多少钱的回报,这个问题没有人能回答出来。" + }, + { + "start" : 299.18000000000001, + "speaker" : "咨询师", + "end" : 302.41000000000003, + "index" : 54, + "text" : "也因此,DJI 的市场人员阵亡率很高。" + }, + { + "start" : 303.00999999999999, + "speaker" : "咨询师", + "end" : 309.29000000000002, + "index" : 55, + "text" : "某种程度上,DJI 不太重视营销,与它在无人机市场的强势领导地位有关。" + }, + { + "start" : 310.02999999999997, + "speaker" : "咨询师", + "end" : 314.43000000000001, + "index" : 56, + "text" : "王涛认为,只要产品领导力在,营销就是可有可无的。" + }, + { + "start" : 314.75, + "speaker" : "咨询师", + "end" : 319.58999999999997, + "index" : 57, + "text" : "但当 DGI 开始不断拓新品类,竞争对手的战力指数也更高时。" + }, + { + "start" : 320.13999999999999, + "speaker" : "咨询师", + "end" : 329.22000000000003, + "index" : 58, + "text" : "几乎没有人能忽视营销的 buff 意识到威胁后,现在的 DGI 也一反常态,通过加大市场营销投入,穷追不舍。" + }, + { + "start" : 330.26999999999998, + "speaker" : "咨询师", + "end" : 332.23000000000002, + "index" : 59, + "text" : "2024年火爆全网络的 pop" + } + ] + }, + "summary" : "对话内容与医美咨询无关,咨询师全程未提及任何医美项目或服务。", + "customer_projects" : [ + + ], + "unmapped" : [ + + ], + "deal_analysis" : { + "status" : "未成交", + "intention" : { + "description" : "对话内容与医美咨询无关,咨询师全程未提及任何医美项目或服务,客户也未表达任何美容需求或兴趣。", + "rating" : "低" + }, + "deal_reason" : { + "description" : "对话中未发现任何成交驱动因素。", + "reason" : [ + + ] + }, + "no_deal_reason" : { + "description" : "对话内容完全偏离医美主题,咨询师未进行任何有效咨询引导,客户也未表达任何相关需求。", + "suggestion" : "1. 核实对话录音是否存在上传错误\n2. 重新培训咨询师掌握基础医美知识及对话引导技巧\n3. 建立咨询前问卷筛选机制,避免无效咨询占用资源", + "reason" : [ + "需求不明确" + ] + } + }, + "doctor_projects" : [ + + ], + "content" : "如何做产品? 怎么干? DJI 是 JK 去年与投资人聊的最多的话题。 直销中上市时创下了70倍 PE 的市值。 6月18日,饮食市值继续大涨,逼近800亿元,资本市场再次一片狂欢。 不同于其他公司上市后普发福利红包的热闹与喧嚣,影视公司内部的气氛却一如既往的平静与忙碌,员工该赶项目的赶项目。 该加班的加班,不同的是,所有人都因为饮食换了一种身份而备受瞩目。 上市这件事情和结婚一样,意味着自己的义务变了。 虽然兴奋,但是身上的担子更重了。 JK 在采访里提到,雷锋网了解到,近两个月来,影视进行了一轮较大范围的组织架构调整。 将多条产品线进行重新整合,多番调整下饮食有何变化? 欢迎添加微信 QQ501一起交流。 年初至今饮食的团队规模扩充了不少,调整的过程虽有些波折,但对内部来说,这场变化也是为了让员工快速适应饮食的成长与规模化。 从而去应对三家争霸,饮食今年压力最大,前有 DJI 后有追觅,都在布局全景相机。 有一次 JK 语重心长地说。 我们需要全面备战,一位饮食员工说道。 赛道内一眼望去全是实力雄厚的对手,饮食的处境比想象中的艰难。 而 IPO 只是一个分水岭。 如果说以前的饮食需要证明自己能稳定盈利,那么现在的饮食则至少需要回答市场三个关键问题。 屋子里的大象来势汹汹,饮食怎么应对? 饮食到底值不值70倍的 PE 未来是否能守得住自己的市场份额? 竞争如此胶灼。 管理层是什么思考呢? 0 DJI 兵临城下,饮食如何应对? 今年 JK 在年会上承认,在 DJI 面前他们确实还是弟弟。 承认归承认。 JK 也同时在内部放话,战术上重视,战略上升维,做好打硬仗、跑马拉松的准备。 他认为就像人跑马拉松。 那个半跑的人或领跑的人还是很重要的。 竞争对手给到你的启发远大于从你手上剥夺的东西。 饮食备战的第一步是先发制人。 Insta 3六0 x 五在4月抢先发布,这距离上一代产品 X4发布仅过去一年的时间。 要知道此前 X2、X3两代的产品周期基本都是2年。 另一边,饮食进一步强化产品和品牌营销,让消费者形成认知,全景就是 Instar 360的天下。 今年2月以来影石开始不遗余力为产品造势,小到运动相机出了个手柄配件,大到发布新的全景相机 X5,通过广告投放加大了对目标消费者的市场渗透。 雷锋网了解到,X5的广告营销基本覆盖了各个渠道的 KOL。 坊间流传,今年 NST 三六零 x 五的广告预算比以往高出不少。 凭借全新的产品,在大幅度的广告投流下,影石 X5发布初期就取得了比较可观的销量。 大规模投放下,X5销量情况如何? 饮食网罗了硬件3C 领域绝大多数的 KOL。 欢迎添加微信 QQ501一起交流。 至少目前来看,饮食的策略是有章法的。 只要有新的 KOL 开始冒头,都会被饮食抢先签下。 在长期重视营销的结果下,饮食逐渐形成了一套围绕 KOL 的营销方法论。 而对面的 DGI 在营销上的态度始终模棱两可,时而强,时而弱。 此前坊间有说法称营销曾经是 DGI 的盐碱地。 公司不开展会,汪涛也不会在公众露面,市场他也不愿意投,品牌也不投,因为汪涛算不清楚这笔账的投入和产出比。 算不清楚他就不投。 王涛不愿意给 KOL 花钱,他觉得这些人什么都没干,躺着就赚了 DJI 的钱,谁都不能躺着赚我的钱。 熟悉 DGI 的人士李阳向雷锋网透露,2020年以前,DGI 是比较重视 KOL 营销的,很多渠道的 KOL 都投了。 谢佳走了之后这些合作项目就都停了。 很长一段时间里,DGI 的市场团队一度是最没有存在感的部门,人手凋零,没几个人。 对这些人来说,要想在汪涛那里拿到市场预算,就得向汪涛证明这些预算投了出去能得到多少钱的回报,这个问题没有人能回答出来。 也因此,DJI 的市场人员阵亡率很高。 某种程度上,DJI 不太重视营销,与它在无人机市场的强势领导地位有关。 王涛认为,只要产品领导力在,营销就是可有可无的。 但当 DGI 开始不断拓新品类,竞争对手的战力指数也更高时。 几乎没有人能忽视营销的 buff 意识到威胁后,现在的 DGI 也一反常态,通过加大市场营销投入,穷追不舍。 2024年火爆全网络的 pop" + }, + "start_time" : 1750836151869, + "end_time" : 1750836175418, + "task_id" : "task_7449d414-91cf-48c8-a6aa-be1691012141" + } + ], + "file_id" : "file_3c57ce78-4860-4efb-8e2b-e394e9d5ea55" +} + diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/Info.plist b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/Info.plist new file mode 100644 index 0000000..a4666c7 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/Info.plist @@ -0,0 +1,27 @@ + + + + + AvailableLibraries + + + BinaryPath + PlaudWiFiSDK.framework/PlaudWiFiSDK + LibraryIdentifier + ios-arm64 + LibraryPath + PlaudWiFiSDK.framework + SupportedArchitectures + + arm64 + + SupportedPlatform + ios + + + CFBundlePackageType + XFWK + XCFrameworkFormatVersion + 1.0 + + diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/JXWebSocketServer.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/JXWebSocketServer.h new file mode 100644 index 0000000..52c571b --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/JXWebSocketServer.h @@ -0,0 +1,44 @@ +// +// JXWebSocketServer.h +// PenBleSDK +// +// Created by 天诺泰 on 2019/12/13. +// Copyright © 2019 天诺泰. All rights reserved. +// + +#import + + +NS_ASSUME_NONNULL_BEGIN + +@protocol JXWebSocketServerDelegate + +- (void)serverDidStart; +- (void)serverDidFailWithError:(NSError *)error; +- (void)serverDidStop; + +- (void)clientDidOpen; +- (void)clientDidReceiveText:(NSString *)text; +- (void)clientDidReceiveData:(NSData *)data; +- (void)clientDidFailWithError:(NSError *)error; +- (void)clientDidCloseWithCode:(NSInteger)code reason:(NSString *)reason wasClean:(BOOL)wasClean; + +@end + +@interface JXWebSocketServer : NSObject + +#pragma mark - Properties + +@property (nonatomic, weak) id delegate; + +#pragma mark - Actions + +- (void)startListen:(NSInteger)port; +- (void)sendText:(NSString *)text; +- (void)sendData:(NSData *)data; +- (void)closeClient; +- (void)close; + +@end + +NS_ASSUME_NONNULL_END diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK-Swift.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK-Swift.h new file mode 100644 index 0000000..6413abc --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK-Swift.h @@ -0,0 +1,587 @@ +#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 PLAUDWIFISDK_SWIFT_H +#define PLAUDWIFISDK_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 Dispatch; +@import Foundation; +@import ObjectiveC; +#endif + +#import + +#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="PlaudWiFiSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) +@class BleDevice; + +/// 一个辅助工具类,方便判断是否连接着WiFi或蓝牙,以及获取BleDevice,调用一些共有的方法 +SWIFT_CLASS("_TtC12PlaudWiFiSDK5Agent") +@interface Agent : NSObject +/// 单例 +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Agent * _Nonnull shared;) ++ (Agent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// 是否连接着设备(WiFi或者蓝牙) +- (BOOL)isDeviceConnect SWIFT_WARN_UNUSED_RESULT; +/// 如果有一个连着,获取连着的设备信息 +- (BleDevice * _Nullable)bleDevice SWIFT_WARN_UNUSED_RESULT; +/// 获取文件列表 +/// \param uid 命令id,建议传时间戳 +/// +/// \param sessionId 起始文件id +/// +/// \param single 是否仅获取当前文件信息,默认是否 +/// +- (void)getFileList:(NSInteger)uid :(NSInteger)sessionId :(BOOL)single; +/// 同步文件 +/// \param sessionId 文件id +/// +/// \param start 起始偏移量(字节) +/// +/// \param end 结束偏移量(字节) +/// +/// \param decode 是否同时解码 +/// +/// \param scene 场景,WiFi才有的参数,默认值1就好 +/// +- (void)syncFile:(NSInteger)sessionId :(NSInteger)start :(NSInteger)end :(BOOL)decode :(NSInteger)scene; +/// 停止文件同步 +/// \param sessionId 文件id,蓝牙状态下不需要 +/// +/// \param scene 场景,WiFi才有的参数,默认值就好 +/// +- (void)stopSyncFile:(NSInteger)sessionId :(NSInteger)scene; +/// 删除文件 +/// \param sessionId 文件id +/// +/// \param scene 场景,WiFi才有的参数,默认值就好 +/// +- (void)deleteFile:(NSInteger)sessionId :(NSInteger)scene; +/// 正在下载的sessionId(如果有的话)或者正在录音的sessionId(如果正在录音的话) +- (NSInteger)sessionId SWIFT_WARN_UNUSED_RESULT; +/// 是否正在下载 +- (BOOL)isDownloading SWIFT_WARN_UNUSED_RESULT; +/// 是否正在录音 +- (BOOL)isRecording SWIFT_WARN_UNUSED_RESULT; +@end + +@protocol WiFiAgentProtocol; +@class NSString; + +/// 需要打开Access WiFi Information和Hotspot Configuration +SWIFT_CLASS("_TtC12PlaudWiFiSDK9WiFiAgent") +@interface WiFiAgent : NSObject +/// 单例 +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) WiFiAgent * _Nonnull shared;) ++ (WiFiAgent * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; +/// 用于主动结束WiFi重连(调用connectWiFi会设置为true,主动设置为false后不会继续重连,) +@property (nonatomic) BOOL connectLoop; +/// 当前同步(下载)文件的sessionId +@property (nonatomic, readonly) NSInteger sessionId; +/// 是否正在同步(下载)文件 +@property (nonatomic, readonly) BOOL isDownloading; +/// 代理 +@property (nonatomic, weak) id _Nullable delegate; +/// 命令回调线程,默认是主线程 +@property (nonatomic, strong) dispatch_queue_t _Nonnull cmdDelegateQueue; +/// 设备信息需要从蓝牙模块传递过来 +/// 在蓝牙回调bleWiFiOpen的时候赋值:WiFiAgent.shared.bleDevice = BleAgent.shared.bleDevice +@property (nonatomic, strong) BleDevice * _Nullable bleDevice; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// 打开 release 下调试日志,方便追踪问题 +- (void)openReleaseLog:(BOOL)opened :(void (^ _Nullable)(NSString * _Nonnull))backBlock; +/// 打开sdk的调试日志,或者回调日志 +- (void)openLog:(BOOL)opened :(void (^ _Nullable)(NSString * _Nonnull))backBlock; +/// iOS 11.0以下使用该方法,会循环检查是否已连接到指定WiFi直到超时 +/// \param ssid WiFi名称 +/// +/// \param overtimeSec 超时时间,默认30秒 +/// +- (void)listenPort:(NSString * _Nonnull)ssid :(NSInteger)overtimeSec; +/// 通过WiFi名称和密码连接到指定WiFi +/// iOS 11.0及以上用这个方法直连WiFi,之前的版本需要弹窗引导用户到设置里面手动连接 +/// \param ssid WiFi名称 +/// +/// \param passphrase 密码 +/// +/// \param overtimeSec 超时时间,默认60秒 +/// +- (void)connectWifi:(NSString * _Nonnull)ssid :(NSString * _Nonnull)passphrase :(NSInteger)overtimeSec :(BOOL)needRetry SWIFT_AVAILABILITY(ios,introduced=11.0); +/// 取消轮询连接 wifi +- (void)cancelConnectWifi; +/// 清理所有WiFi配置缓存 +- (void)clearAllWiFiConfigurations SWIFT_AVAILABILITY(ios,introduced=11.0); +/// 清理所有WiFi配置缓存(兼容iOS 11.0以下版本) +- (void)clearAllWiFiConfigurationsCompat; +/// 断开连接 +- (void)disconnect; +@end + + +@interface WiFiAgent (SWIFT_EXTENSION(PlaudWiFiSDK)) +/// 获取当前连接的WiFi名称 +/// app需要添加Access WiFi Information权限(ios 12.0以后) +- (NSString * _Nullable)getCurrentWiFiName SWIFT_WARN_UNUSED_RESULT; +/// 方法4:带重试机制的WiFi名称获取 +- (NSString * _Nullable)getCurrentWiFiNameWithRetryWithMaxRetries:(NSInteger)maxRetries delay:(NSTimeInterval)delay SWIFT_WARN_UNUSED_RESULT; +@end + +@class NSData; + +@interface WiFiAgent (SWIFT_EXTENSION(PlaudWiFiSDK)) +- (void)serverDidStart; +- (void)serverDidFailWithError:(NSError * _Nonnull)error; +- (void)serverDidStop; +- (void)clientDidOpen; +- (void)clientDidReceiveText:(NSString * _Nonnull)text; +- (void)clientDidReceiveData:(NSData * _Nonnull)data; +- (void)clientDidFailWithError:(NSError * _Nonnull)error; +- (void)clientDidCloseWithCode:(NSInteger)code reason:(NSString * _Nonnull)reason wasClean:(BOOL)wasClean; +@end + + +@interface WiFiAgent (SWIFT_EXTENSION(PlaudWiFiSDK)) +/// 是否已成功建立WebSocket连接(app可以发送请求的前提) +- (BOOL)isWebSocketConnected SWIFT_WARN_UNUSED_RESULT; +/// 速率测试(cmd=100) +/// \param onOff 开始或结束 +/// +/// \param packSize 测试包大小 +/// +- (void)appWiFiRate:(BOOL)onOff :(NSInteger)packSize; +/// 删除文件(cmd=14) +/// \param sessionId 录音id +/// +/// \param scene 场景,默认1 +/// +- (void)appDeleteFile:(NSInteger)sessionId :(NSInteger)scene; +/// 延长WiFi退出时间(cmd=16) +- (void)appExtendWifiExitTime; +/// 停止文件同步(cmd=15) +/// \param sessionId 录音id +/// +/// \param scene 场景,默认1 +/// +- (void)appStopSyncFile:(NSInteger)sessionId :(NSInteger)scene; +/// 文件同步(cmd=12) +/// \param sessionId 录音id +/// +/// \param start 起始位置(是文件偏移量,不是时间) +/// +/// \param end 结束位置(默认0,到文件结束) +/// +/// \param scene 录音场景,默认1 +/// +- (void)appSyncFile:(NSInteger)sessionId :(NSInteger)start :(NSInteger)end :(NSInteger)scene; +/// 获取文件列表(app发起 cmd=11) +/// \param uid 请求的uid,新的请求会自然覆盖老的请求 +/// +/// \param sessionId 起始sessionId +/// +/// \param single 是否仅获取当前文件信息,默认是否, +/// +- (void)appGetFileList:(NSInteger)uid :(NSInteger)sessionId :(BOOL)single; +- (void)startPushOTA:(NSInteger)uid :(NSInteger)fileSize crc:(NSInteger)crc :(NSInteger)toVersion; +- (void)sendFilePackToPenWithType:(NSInteger)type start:(int32_t)start len:(int32_t)len last:(BOOL)last uid:(int32_t)uid binData:(NSData * _Nullable)binData; +@end + + +@class BleFile; + +SWIFT_PROTOCOL("_TtP12PlaudWiFiSDK17WiFiAgentProtocol_") +@protocol WiFiAgentProtocol +/// 通用错误 +/// \param cmd 错误指令 +/// +/// \param status 错误码 +/// +- (void)wifiCommonErr:(NSInteger)cmd :(NSInteger)status; +/// 握手结果 +/// \param status 0 成功,其他失败 +/// +- (void)wifiHandshake:(NSInteger)status; +/// 电池电量和电池电压 +/// \param power 电池电量,百分比 +/// +/// \param voltage 电池电压,mv +/// +- (void)wifiPower:(NSInteger)power :(NSInteger)voltage; +/// 获取录音列表失败 +/// \param status 错误码 +/// +- (void)wifiFileListFail:(NSInteger)status; +/// 获取录音列表 +/// \param files 录音列表 +/// +- (void)wifiFileList:(NSArray * _Nonnull)files; +/// 文件同步–文件状态 +/// \param sessionId 录音id +/// +/// \param status 状态 +/// +- (void)wifiSyncFile:(NSInteger)sessionId :(NSInteger)status; +/// 文件同步–文件数据 +/// \param sessionId 录音id +/// +/// \param offset 文件偏移量(字节) +/// +/// \param count 文件长度(字节) +/// +/// \param binData 数据 +/// +- (void)wifiSyncFileData:(NSInteger)sessionId :(NSInteger)offset :(NSInteger)count :(NSData * _Nonnull)binData; +/// 一个文件下载完了 +- (void)wifiDataComplete; +/// 文件同步停止 +/// \param status 状态 0 成功 +/// +- (void)wifiSyncFileStop:(NSInteger)status; +/// 文件删除结果 +/// \param sessionId 录音id +/// +/// \param status 删除结果 0 成功,>0 失败原因 +/// +- (void)wifiFileDelete:(NSInteger)sessionId :(NSInteger)status; +/// 客户端异常断开,等待重连 +/// 请设置 BleAgent.shared.setWiFiState(false) +- (void)wifiClientFail; +/// WiFi关闭通知 +/// \param status 状态 -1 是 didFailWithError; -2 是超时未连接; -3 NEHotspotConfigurationManager直连异常 +/// +- (void)wifiClose:(NSInteger)status; +/// 速率测试失败 +/// \param status 错误码 +/// +- (void)wifiRateFail:(NSInteger)status; +/// 速率测试 +/// \param instantRate 瞬时速率 +/// +/// \param averageRate 平均速率 +/// +/// \param lossRate 丢包率 +/// +- (void)wifiRate:(NSInteger)instantRate :(NSInteger)averageRate :(double)lossRate; +/// 获取笔端日志失败 +/// \param status 错误码 +/// +- (void)wifiLogsFail:(NSInteger)status; +/// 笔端日志 +/// \param logData 日志数据 +/// +- (void)wifiLogs:(NSData * _Nullable)logData; +/// 笔端发送tips给app +/// \param tips 0 无提示 1 笔端录音键按下 +/// +- (void)wifiTips:(NSInteger)tips; +- (void)penRequestOTADataWithStart:(NSInteger)start end:(NSInteger)end payloadSize:(NSInteger)payloadSize uid:(NSInteger)uid sendRatePPS:(NSInteger)sendRatePPS; +- (void)wifiOTAStatus:(NSInteger)status :(NSInteger)uid; +@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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK.h b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK.h new file mode 100644 index 0000000..6cf2bd6 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Headers/PlaudWiFiSDK.h @@ -0,0 +1,23 @@ +// +// PlaudWiFiSDK.h +// PlaudWiFiSDK +// +// Copyright © 2025 NiceBuild. All rights reserved. +// + +#import + +//! Project version number for PlaudWiFiSDK. +FOUNDATION_EXPORT double PlaudWiFiSDKVersionNumber; + +//! Project version string for PlaudWiFiSDK. +FOUNDATION_EXPORT const unsigned char PlaudWiFiSDKVersionString[]; + +// ObjC types from the embedded PenWiFiSDK static library +#import + +// PlaudWiFiSDK-Swift.h is auto-generated by Xcode (all Swift @objc types are +// compiled directly into this framework — no separate PenWiFiSDK module needed). +#if __has_include() +#import +#endif diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Info.plist b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Info.plist new file mode 100644 index 0000000..151731a --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Info.plist @@ -0,0 +1,55 @@ + + + + + BuildMachineOSBuild + 24G90 + CFBundleDevelopmentRegion + en + CFBundleExecutable + PlaudWiFiSDK + CFBundleIdentifier + com.plaud.sdk.PlaudWiFiSDK + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + PlaudWiFiSDK + 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/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo new file mode 100644 index 0000000..46e9a1f Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.abi.json b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..cde8b0b --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,4684 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "PlaudWiFiSDK", + "printedName": "PlaudWiFiSDK", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "PenBleSDK", + "printedName": "PenBleSDK", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "TypeDecl", + "name": "Agent", + "printedName": "Agent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "Agent", + "printedName": "PlaudWiFiSDK.Agent", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(cpy)shared", + "mangledName": "$s12PlaudWiFiSDK5AgentC6sharedACvpZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Agent", + "printedName": "PlaudWiFiSDK.Agent", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(cm)shared", + "mangledName": "$s12PlaudWiFiSDK5AgentC6sharedACvgZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isDeviceConnect", + "printedName": "isDeviceConnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)isDeviceConnect", + "mangledName": "$s12PlaudWiFiSDK5AgentC15isDeviceConnectSbyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bleDevice", + "printedName": "bleDevice()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudBleSDK.BleDevice?", + "children": [ + { + "kind": "TypeNominal", + "name": "BleDevice", + "printedName": "PlaudBleSDK.BleDevice", + "usr": "c:@M@PenBleSDK@objc(cs)BleDevice" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)bleDevice", + "mangledName": "$s12PlaudWiFiSDK5AgentC9bleDevice0a3BleD00hG0CSgyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getFileList", + "printedName": "getFileList(_:_:_:)", + "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@PlaudWiFiSDK@objc(cs)Agent(im)getFileList:::", + "mangledName": "$s12PlaudWiFiSDK5AgentC11getFileListyySi_SiSbtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "syncFile", + "printedName": "syncFile(_:_:_:_:_:)", + "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", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)syncFile:::::", + "mangledName": "$s12PlaudWiFiSDK5AgentC8syncFileyySi_S2iSbSitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSyncFile", + "printedName": "stopSyncFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)stopSyncFile::", + "mangledName": "$s12PlaudWiFiSDK5AgentC12stopSyncFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deleteFile", + "printedName": "deleteFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)deleteFile::", + "mangledName": "$s12PlaudWiFiSDK5AgentC10deleteFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sessionId", + "printedName": "sessionId()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)sessionId", + "mangledName": "$s12PlaudWiFiSDK5AgentC9sessionIdSiyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDownloading", + "printedName": "isDownloading()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)isDownloading", + "mangledName": "$s12PlaudWiFiSDK5AgentC13isDownloadingSbyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRecording", + "printedName": "isRecording()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent(im)isRecording", + "mangledName": "$s12PlaudWiFiSDK5AgentC11isRecordingSbyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)Agent", + "mangledName": "$s12PlaudWiFiSDK5AgentC", + "moduleName": "PlaudWiFiSDK", + "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": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "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": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO7unknownyA2EmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO7unknownyA2EmF", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Var", + "name": "notReachable", + "printedName": "notReachable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO12notReachableyA2EmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO12notReachableyA2EmF", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Var", + "name": "reachable", + "printedName": "reachable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type) -> (PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType) -> PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType) -> PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + }, + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO9reachableyAeC14ConnectionTypeOcAEmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO9reachableyAeC14ConnectionTypeOcAEmF", + "moduleName": "PlaudWiFiSDK" + } + ], + "declKind": "Enum", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO", + "moduleName": "PlaudWiFiSDK", + "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": "(PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType.Type) -> PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO010ethernetOrbC0yA2EmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO010ethernetOrbC0yA2EmF", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Var", + "name": "wwan", + "printedName": "wwan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType.Type) -> PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + }, + { + "kind": "TypeNominal", + "name": "ConnectionType", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO2eeoiySbAE_AEtFZ", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO2eeoiySbAE_AEtFZ", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivp", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO9hashValueSivg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO4hash4intoys6HasherVz_tF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO4hash4intoys6HasherVz_tF", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14ConnectionTypeO", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC11isReachableSbvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC11isReachableSbvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC11isReachableSbvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC11isReachableSbvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC17isReachableOnWWANSbvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC023isReachableOnEthernetOrbC0Sbvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC023isReachableOnEthernetOrbC0Sbvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC023isReachableOnEthernetOrbC0Sbvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC023isReachableOnEthernetOrbC0Sbvg", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "networkReachabilityStatus", + "printedName": "networkReachabilityStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC07networkF6StatusAC0efI0Ovp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC07networkF6StatusAC0efI0Ovp", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC07networkF6StatusAC0efI0Ovg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC07networkF6StatusAC0efI0Ovg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvs", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvM", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvM", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "listener", + "printedName": "listener", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvp", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvs", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvM", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC8listeneryAC0eF6StatusOcSgvM", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkF5FlagsVSgvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkF5FlagsVSgvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkF5FlagsVSgvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC5flagsSo09SCNetworkF5FlagsVSgvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvp", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvp", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvg", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvg", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvs", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0Vvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0VvM", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkfI0VvM", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(host:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager?", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityManager", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC4hostACSgSS_tcfc", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC4hostACSgSS_tcfc", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager?", + "children": [ + { + "kind": "TypeNominal", + "name": "NetworkReachabilityManager", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerCACSgycfc", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerCACSgycfc", + "moduleName": "PlaudWiFiSDK", + "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:12PlaudWiFiSDK26NetworkReachabilityManagerC14startListeningSbyF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC14startListeningSbyF", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopListening", + "printedName": "stopListening()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC13stopListeningyyF", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC13stopListeningyyF", + "moduleName": "PlaudWiFiSDK", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC", + "mangledName": "$s12PlaudWiFiSDK26NetworkReachabilityManagerC", + "moduleName": "PlaudWiFiSDK", + "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": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + }, + { + "kind": "TypeNominal", + "name": "NetworkReachabilityStatus", + "printedName": "PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus", + "usr": "s:12PlaudWiFiSDK26NetworkReachabilityManagerC0eF6StatusO" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK2eeoiySbAA26NetworkReachabilityManagerC0fG6StatusO_AFtF", + "mangledName": "$s12PlaudWiFiSDK2eeoiySbAA26NetworkReachabilityManagerC0fG6StatusO_AFtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "SystemConfiguration.CaptiveNetwork", + "printedName": "SystemConfiguration.CaptiveNetwork", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "NetworkExtension", + "printedName": "NetworkExtension", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "CoreLocation", + "printedName": "CoreLocation", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "Import", + "name": "PenBleSDK", + "printedName": "PenBleSDK", + "declKind": "Import", + "moduleName": "PlaudWiFiSDK" + }, + { + "kind": "TypeDecl", + "name": "WiFiAgentProtocol", + "printedName": "WiFiAgentProtocol", + "children": [ + { + "kind": "Function", + "name": "wifiCommonErr", + "printedName": "wifiCommonErr(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiCommonErr::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP13wifiCommonErryySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiHandshake", + "printedName": "wifiHandshake(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiHandshake:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP13wifiHandshakeyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiPower", + "printedName": "wifiPower(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiPower::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP9wifiPoweryySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileListFail", + "printedName": "wifiFileListFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiFileListFail:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP16wifiFileListFailyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileList", + "printedName": "wifiFileList(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[PlaudBleSDK.BleFile]", + "children": [ + { + "kind": "TypeNominal", + "name": "BleFile", + "printedName": "PlaudBleSDK.BleFile", + "usr": "c:@M@PenBleSDK@objc(cs)BleFile" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiFileList:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP12wifiFileListyySay0a3BleD00jH0CGF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFile", + "printedName": "wifiSyncFile(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiSyncFile::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP12wifiSyncFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileData", + "printedName": "wifiSyncFileData(_:_:_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiSyncFileData::::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP16wifiSyncFileDatayySi_S2i10Foundation0J0VtF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiDataComplete", + "printedName": "wifiDataComplete()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiDataComplete", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP16wifiDataCompleteyyF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiSyncFileStop", + "printedName": "wifiSyncFileStop(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiSyncFileStop:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP16wifiSyncFileStopyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiFileDelete", + "printedName": "wifiFileDelete(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiFileDelete::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP14wifiFileDeleteyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClientFail", + "printedName": "wifiClientFail()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiClientFail", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP14wifiClientFailyyF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiClose", + "printedName": "wifiClose(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiClose:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP9wifiCloseyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRateFail", + "printedName": "wifiRateFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiRateFail:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP12wifiRateFailyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiRate", + "printedName": "wifiRate(_:_:_:)", + "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": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiRate:::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP8wifiRateyySi_SiSdtF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogsFail", + "printedName": "wifiLogsFail(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiLogsFail:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP12wifiLogsFailyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiLogs", + "printedName": "wifiLogs(_:)", + "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": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiLogs:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP8wifiLogsyy10Foundation4DataVSgF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiTips", + "printedName": "wifiTips(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiTips:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP8wifiTipsyySiF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "penRequestOTAData", + "printedName": "penRequestOTAData(start:end:payloadSize:uid:sendRatePPS:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)penRequestOTADataWithStart:end:payloadSize:uid:sendRatePPS:", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP17penRequestOTAData5start3end11payloadSize3uid11sendRatePPSySi_S4itF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "wifiOTAStatus", + "printedName": "wifiOTAStatus(_:_:)", + "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@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol(im)wifiOTAStatus::", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP13wifiOTAStatusyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "genericSig": "<τ_0_0 where τ_0_0 : PlaudWiFiSDK.WiFiAgentProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol", + "mangledName": "$s12PlaudWiFiSDK0bC13AgentProtocolP", + "moduleName": "PlaudWiFiSDK", + "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": "WiFiAgent", + "printedName": "WiFiAgent", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "WiFiAgent", + "printedName": "PlaudWiFiSDK.WiFiAgent", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(cpy)shared", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC6sharedACvpZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "WiFiAgent", + "printedName": "PlaudWiFiSDK.WiFiAgent", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(cm)shared", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC6sharedACvgZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "connectLoop", + "printedName": "connectLoop", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(py)connectLoop", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectLoopSbvp", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)connectLoop", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectLoopSbvg", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)setConnectLoop:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectLoopSbvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC11connectLoopSbvM", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectLoopSbvM", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isServerStart", + "printedName": "isServerStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK0bC5AgentC13isServerStartSbvp", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isServerStartSbvp", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC13isServerStartSbvg", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isServerStartSbvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isClientOpen", + "printedName": "isClientOpen", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK0bC5AgentC12isClientOpenSbvp", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC12isClientOpenSbvp", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC12isClientOpenSbvg", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC12isClientOpenSbvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "wifiVersion", + "printedName": "wifiVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK0bC5AgentC11wifiVersionSivp", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11wifiVersionSivp", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC11wifiVersionSivg", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11wifiVersionSivg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isHandshakeOk", + "printedName": "isHandshakeOk", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK0bC5AgentC13isHandshakeOkSbvp", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isHandshakeOkSbvp", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC13isHandshakeOkSbvg", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isHandshakeOkSbvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionId", + "printedName": "sessionId", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(py)sessionId", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9sessionIdSivp", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)sessionId", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9sessionIdSivg", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(py)isDownloading", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isDownloadingSbvp", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)isDownloading", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13isDownloadingSbvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "(any PlaudWiFiSDK.WiFiAgentProtocol)?" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(py)delegate", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvp", + "moduleName": "PlaudWiFiSDK", + "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 PlaudWiFiSDK.WiFiAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "WiFiAgentProtocol", + "printedName": "any PlaudWiFiSDK.WiFiAgentProtocol", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)delegate", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvg", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any PlaudWiFiSDK.WiFiAgentProtocol)?", + "children": [ + { + "kind": "TypeNominal", + "name": "WiFiAgentProtocol", + "printedName": "any PlaudWiFiSDK.WiFiAgentProtocol", + "usr": "c:@M@PlaudWiFiSDK@objc(pl)WiFiAgentProtocol" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)setDelegate:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvM", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC8delegateAA0bcE8Protocol_pSgvM", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(py)cmdDelegateQueue", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvp", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)cmdDelegateQueue", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvg", + "moduleName": "PlaudWiFiSDK", + "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@PlaudWiFiSDK@objc(cs)WiFiAgent(im)setCmdDelegateQueue:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvM", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16cmdDelegateQueueSo17OS_dispatch_queueCvM", + "moduleName": "PlaudWiFiSDK", + "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@PenBleSDK@objc(cs)BleDevice" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(py)bleDevice", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvp", + "moduleName": "PlaudWiFiSDK", + "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@PenBleSDK@objc(cs)BleDevice" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)bleDevice", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvg", + "moduleName": "PlaudWiFiSDK", + "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@PenBleSDK@objc(cs)BleDevice" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)setBleDevice:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvs", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvM", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC9bleDevice0a3BleD00hG0CSgvM", + "moduleName": "PlaudWiFiSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "openReleaseLog", + "printedName": "openReleaseLog(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)openReleaseLog::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC14openReleaseLogyySb_ySScSgtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openLog", + "printedName": "openLog(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)openLog::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC7openLogyySb_ySScSgtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "listenPort", + "printedName": "listenPort(_:_:)", + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)listenPort::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC10listenPortyySS_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "connectWifi", + "printedName": "connectWifi(_:_:_:_:)", + "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": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)connectWifi::::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11connectWifiyySS_SSSiSbtF", + "moduleName": "PlaudWiFiSDK", + "intro_iOS": "11.0", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelConnectWifi", + "printedName": "cancelConnectWifi()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)cancelConnectWifi", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC17cancelConnectWifiyyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAllWiFiConfigurations", + "printedName": "clearAllWiFiConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clearAllWiFiConfigurations", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC08clearAllbC14ConfigurationsyyF", + "moduleName": "PlaudWiFiSDK", + "intro_iOS": "11.0", + "declAttributes": [ + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearAllWiFiConfigurationsCompat", + "printedName": "clearAllWiFiConfigurationsCompat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clearAllWiFiConfigurationsCompat", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC08clearAllbC20ConfigurationsCompatyyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disconnect", + "printedName": "disconnect()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent(im)disconnect", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC10disconnectyyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "serverDidStart", + "printedName": "serverDidStart()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)serverDidStart", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC14serverDidStartyyF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "serverDidStart", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "serverDidFailWithError", + "printedName": "serverDidFailWithError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)serverDidFailWithError:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC22serverDidFailWithErroryys0J0_pF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "serverDidFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "serverDidStop", + "printedName": "serverDidStop()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)serverDidStop", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13serverDidStopyyF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "serverDidStop", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidOpen", + "printedName": "clientDidOpen()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidOpen", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13clientDidOpenyyF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidOpen", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidReceiveText", + "printedName": "clientDidReceiveText(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidReceiveText:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC20clientDidReceiveTextyySSF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidReceiveText:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidReceive", + "printedName": "clientDidReceive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidReceiveData:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC16clientDidReceiveyy10Foundation4DataVF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidReceiveData:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidFailWithError", + "printedName": "clientDidFailWithError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidFailWithError:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC22clientDidFailWithErroryys0J0_pF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clientDidClose", + "printedName": "clientDidClose(withCode:reason:wasClean:)", + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)clientDidCloseWithCode:reason:wasClean:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC14clientDidClose8withCode6reason8wasCleanySi_SSSbtF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "clientDidCloseWithCode:reason:wasClean:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isWebSocketConnected", + "printedName": "isWebSocketConnected()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)isWebSocketConnected", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC20isWebSocketConnectedSbyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appGetLogs", + "printedName": "appGetLogs(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK0bC5AgentC10appGetLogsyySbF", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC10appGetLogsyySbF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appWiFiRate", + "printedName": "appWiFiRate(_:_:)", + "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:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appWiFiRate::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC03appbC4RateyySb_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appDeleteFile", + "printedName": "appDeleteFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appDeleteFile::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC13appDeleteFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appExtendWifiExitTime", + "printedName": "appExtendWifiExitTime()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appExtendWifiExitTime", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC21appExtendWifiExitTimeyyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appStopSyncFile", + "printedName": "appStopSyncFile(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appStopSyncFile::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC15appStopSyncFileyySi_SitF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appSyncFile", + "printedName": "appSyncFile(_:_:_:_:)", + "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", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appSyncFile::::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC11appSyncFileyySi_S3itF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appGetFileList", + "printedName": "appGetFileList(_:_:_:)", + "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:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)appGetFileList:::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC14appGetFileListyySi_SiSbtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startPushOTA", + "printedName": "startPushOTA(_:_: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" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)startPushOTA::crc::", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC12startPushOTA__3crc_ySi_S3itF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendFilePackToPen", + "printedName": "sendFilePackToPen(type:start:len:last:uid:binData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)sendFilePackToPenWithType:start:len:last:uid:binData:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC17sendFilePackToPen4type5start3len4last3uid7binDataySi_s5Int32VALSbAL10Foundation0Q0VSgtF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "sendFilePackToPenWithType:start:len:last:uid:binData:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentWiFiName", + "printedName": "getCurrentWiFiName()", + "children": [ + { + "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:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)getCurrentWiFiName", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC010getCurrentbC4NameSSSgyF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrentWiFiNameWithRetry", + "printedName": "getCurrentWiFiNameWithRetry(maxRetries:delay:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "hasDefaultArg": true, + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@CM@PlaudWiFiSDK@objc(cs)WiFiAgent(im)getCurrentWiFiNameWithRetryWithMaxRetries:delay:", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC010getCurrentbC13NameWithRetry10maxRetries5delaySSSgSi_SdtF", + "moduleName": "PlaudWiFiSDK", + "objc_name": "getCurrentWiFiNameWithRetryWithMaxRetries:delay:", + "declAttributes": [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@PlaudWiFiSDK@objc(cs)WiFiAgent", + "mangledName": "$s12PlaudWiFiSDK0bC5AgentC", + "moduleName": "PlaudWiFiSDK", + "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": "GCDTool", + "printedName": "GCDTool", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "GCDTool", + "printedName": "PlaudWiFiSDK.GCDTool", + "usr": "s:12PlaudWiFiSDK7GCDToolC" + } + ], + "declKind": "Var", + "usr": "s:12PlaudWiFiSDK7GCDToolC6sharedACvpZ", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC6sharedACvpZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GCDTool", + "printedName": "PlaudWiFiSDK.GCDTool", + "usr": "s:12PlaudWiFiSDK7GCDToolC" + } + ], + "declKind": "Accessor", + "usr": "s:12PlaudWiFiSDK7GCDToolC6sharedACvgZ", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC6sharedACvgZ", + "moduleName": "PlaudWiFiSDK", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "execute", + "printedName": "execute(label:_:)", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK7GCDToolC7execute5label_yycSS_yyXLtF", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC7execute5label_yycSS_yyXLtF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel(label:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12PlaudWiFiSDK7GCDToolC6cancel5labelySS_tF", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC6cancel5labelySS_tF", + "moduleName": "PlaudWiFiSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12PlaudWiFiSDK7GCDToolC", + "mangledName": "$s12PlaudWiFiSDK7GCDToolC", + "moduleName": "PlaudWiFiSDK", + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "BooleanLiteral", + "offset": 1244, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "IntegerLiteral", + "offset": 1846, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "BooleanLiteral", + "offset": 1866, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "IntegerLiteral", + "offset": 1888, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "IntegerLiteral", + "offset": 2392, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/Agent.swift", + "kind": "IntegerLiteral", + "offset": 2855, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 692, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4296, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 4349, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 4424, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4584, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4733, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4815, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 4887, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 4960, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5068, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 5165, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "StringLiteral", + "offset": 5239, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5283, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 5324, + "length": 2, + "value": "-1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "StringLiteral", + "offset": 5872, + "length": 27, + "value": "\"com.plaud.wifi.send.queue\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "StringLiteral", + "offset": 6215, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 7594, + "length": 2, + "value": "30" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 9809, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 9833, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 11260, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 15932, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 21780, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 49785, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 50536, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 51143, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 51161, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "BooleanLiteral", + "offset": 51824, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 66084, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "FloatLiteral", + "offset": 66109, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 68141, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69577, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69639, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69695, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69754, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 69803, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 71176, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 71195, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 74306, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 74377, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 74430, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/panyue\/Desktop\/project\/TOB\/private\/flutter-tob\/tb-plaud-mobile\/ios\/SDK\/SDKLibs\/PenSubmodules\/BlePen\/PenWiFiSdk\/SwiftFiles\/WiFiAgent.swift", + "kind": "IntegerLiteral", + "offset": 74484, + "length": 1, + "value": "0" + } + ] +} \ No newline at end of file diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftdoc b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..4627789 Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftinterface b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftinterface new file mode 100644 index 0000000..01f6e74 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/PlaudWiFiSDK.swiftmodule/arm64-apple-ios.swiftinterface @@ -0,0 +1,168 @@ +// 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 PlaudWiFiSDK +// swift-module-flags-ignorable: -no-verify-emitted-module-interface +import SystemConfiguration.CaptiveNetwork +import CommonCrypto +import CoreLocation +import Foundation +import NetworkExtension +import PlaudBleSDK +@_exported import PlaudWiFiSDK +import Swift +import SystemConfiguration +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class Agent : ObjectiveC.NSObject { + @objc public static let shared: PlaudWiFiSDK.Agent + @objc public func isDeviceConnect() -> Swift.Bool + @objc public func bleDevice() -> PlaudBleSDK.BleDevice? + @objc public func getFileList(_ uid: Swift.Int, _ sessionId: Swift.Int, _ single: Swift.Bool = false) + @objc public func syncFile(_ sessionId: Swift.Int, _ start: Swift.Int, _ end: Swift.Int = 0, _ decode: Swift.Bool = false, _ scene: Swift.Int = 1) + @objc public func stopSyncFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc public func deleteFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc public func sessionId() -> Swift.Int + @objc public func isDownloading() -> Swift.Bool + @objc public func isRecording() -> Swift.Bool + @objc deinit +} +@_hasMissingDesignatedInitializers open class NetworkReachabilityManager { + public enum NetworkReachabilityStatus { + case unknown + case notReachable + case reachable(PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType) + } + public enum ConnectionType { + case ethernetOrWiFi + case wwan + public static func == (a: PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType, b: PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } + } + public typealias Listener = (PlaudWiFiSDK.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: PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus { + get + } + open var listenerQueue: Dispatch.DispatchQueue + open var listener: PlaudWiFiSDK.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 PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus : Swift.Equatable { +} +public func == (lhs: PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus, rhs: PlaudWiFiSDK.NetworkReachabilityManager.NetworkReachabilityStatus) -> Swift.Bool +@objc public protocol WiFiAgentProtocol { + @objc func wifiCommonErr(_ cmd: Swift.Int, _ status: Swift.Int) + @objc func wifiHandshake(_ status: Swift.Int) + @objc func wifiPower(_ power: Swift.Int, _ voltage: Swift.Int) + @objc func wifiFileListFail(_ status: Swift.Int) + @objc func wifiFileList(_ files: [PlaudBleSDK.BleFile]) + @objc func wifiSyncFile(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc func wifiSyncFileData(_ sessionId: Swift.Int, _ offset: Swift.Int, _ count: Swift.Int, _ binData: Foundation.Data) + @objc func wifiDataComplete() + @objc func wifiSyncFileStop(_ status: Swift.Int) + @objc func wifiFileDelete(_ sessionId: Swift.Int, _ status: Swift.Int) + @objc func wifiClientFail() + @objc func wifiClose(_ status: Swift.Int) + @objc func wifiRateFail(_ status: Swift.Int) + @objc func wifiRate(_ instantRate: Swift.Int, _ averageRate: Swift.Int, _ lossRate: Swift.Double) + @objc func wifiLogsFail(_ status: Swift.Int) + @objc func wifiLogs(_ logData: Foundation.Data?) + @objc func wifiTips(_ tips: Swift.Int) + @objc func penRequestOTAData(start: Swift.Int, end: Swift.Int, payloadSize: Swift.Int, uid: Swift.Int, sendRatePPS: Swift.Int) + @objc func wifiOTAStatus(_ status: Swift.Int, _ uid: Swift.Int) +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class WiFiAgent : ObjectiveC.NSObject { + @objc public static let shared: PlaudWiFiSDK.WiFiAgent + @objc public var connectLoop: Swift.Bool + public var isServerStart: Swift.Bool { + get + } + public var isClientOpen: Swift.Bool { + get + } + public var wifiVersion: Swift.Int { + get + } + public var isHandshakeOk: Swift.Bool { + get + } + @objc public var sessionId: Swift.Int { + get + } + @objc public var isDownloading: Swift.Bool { + get + } + @objc weak public var delegate: (any PlaudWiFiSDK.WiFiAgentProtocol)? + @objc public var cmdDelegateQueue: Dispatch.DispatchQueue + @objc public var bleDevice: PlaudBleSDK.BleDevice? { + @objc get + @objc set + } + @objc public func openReleaseLog(_ opened: Swift.Bool, _ backBlock: ((Swift.String) -> Swift.Void)? = nil) + @objc public func openLog(_ opened: Swift.Bool, _ backBlock: ((Swift.String) -> Swift.Void)? = nil) + @objc public func listenPort(_ ssid: Swift.String, _ overtimeSec: Swift.Int = 30) + @available(iOS 11.0, *) + @objc public func connectWifi(_ ssid: Swift.String, _ passphrase: Swift.String, _ overtimeSec: Swift.Int = 60, _ needRetry: Swift.Bool = true) + @objc public func cancelConnectWifi() + @available(iOS 11.0, *) + @objc public func clearAllWiFiConfigurations() + @objc public func clearAllWiFiConfigurationsCompat() + @objc public func disconnect() + @objc deinit +} +extension PlaudWiFiSDK.WiFiAgent : PlaudWiFiSDK.JXWebSocketServerDelegate { + @objc dynamic public func serverDidStart() + @objc dynamic public func serverDidFailWithError(_ error: any Swift.Error) + @objc dynamic public func serverDidStop() + @objc dynamic public func clientDidOpen() + @objc dynamic public func clientDidReceiveText(_ text: Swift.String) + @objc dynamic public func clientDidReceive(_ data: Foundation.Data) + @objc dynamic public func clientDidFailWithError(_ error: any Swift.Error) + @objc dynamic public func clientDidClose(withCode code: Swift.Int, reason: Swift.String, wasClean: Swift.Bool) +} +extension PlaudWiFiSDK.WiFiAgent { + @objc dynamic public func isWebSocketConnected() -> Swift.Bool + public func appGetLogs(_ begin: Swift.Bool) + @objc dynamic public func appWiFiRate(_ onOff: Swift.Bool, _ packSize: Swift.Int) + @objc dynamic public func appDeleteFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc dynamic public func appExtendWifiExitTime() + @objc dynamic public func appStopSyncFile(_ sessionId: Swift.Int, _ scene: Swift.Int = 1) + @objc dynamic public func appSyncFile(_ sessionId: Swift.Int, _ start: Swift.Int, _ end: Swift.Int = 0, _ scene: Swift.Int = 1) + @objc dynamic public func appGetFileList(_ uid: Swift.Int, _ sessionId: Swift.Int, _ single: Swift.Bool = false) + @objc dynamic public func startPushOTA(_ uid: Swift.Int, _ fileSize: Swift.Int, crc: Swift.Int, _ toVersion: Swift.Int) + @objc dynamic public func sendFilePackToPen(type: Swift.Int, start: Swift.Int32, len: Swift.Int32, last: Swift.Bool, uid: Swift.Int32, binData: Foundation.Data?) +} +extension PlaudWiFiSDK.WiFiAgent { + @objc dynamic public func getCurrentWiFiName() -> Swift.String? + @objc dynamic public func getCurrentWiFiNameWithRetry(maxRetries: Swift.Int = 3, delay: Foundation.TimeInterval = 1.0) -> Swift.String? +} +@_hasMissingDesignatedInitializers public class GCDTool { + public static let shared: PlaudWiFiSDK.GCDTool + public typealias AnythingBlock = () -> Swift.Void + public func execute(label identifier: Swift.String, _ work: @escaping @convention(block) () -> Swift.Void) -> PlaudWiFiSDK.GCDTool.AnythingBlock + public func cancel(label identifier: Swift.String) + @objc deinit +} +extension PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType : Swift.Equatable {} +extension PlaudWiFiSDK.NetworkReachabilityManager.ConnectionType : Swift.Hashable {} diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/module.modulemap b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/module.modulemap new file mode 100644 index 0000000..71b8f61 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/Modules/module.modulemap @@ -0,0 +1,11 @@ +framework module PlaudWiFiSDK { + umbrella header "PlaudWiFiSDK.h" + export * + + module * { export * } +} + +module PlaudWiFiSDK.Swift { + header "PlaudWiFiSDK-Swift.h" + requires objc +} diff --git a/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/PlaudWiFiSDK b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/PlaudWiFiSDK new file mode 100755 index 0000000..2b36129 Binary files /dev/null and b/react-native-demo/modules/plaud-sdk/ios/Frameworks/PlaudWiFiSDK.xcframework/ios-arm64/PlaudWiFiSDK.framework/PlaudWiFiSDK differ diff --git a/react-native-demo/modules/plaud-sdk/ios/PlaudSdk.podspec b/react-native-demo/modules/plaud-sdk/ios/PlaudSdk.podspec new file mode 100644 index 0000000..2fc3317 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/PlaudSdk.podspec @@ -0,0 +1,36 @@ +require 'json' + +package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json'))) + +Pod::Spec.new do |s| + s.name = 'PlaudSdk' + s.version = package['version'] + s.summary = package['description'] + s.description = package['description'] + s.license = package['license'] + s.author = package['author'] + s.homepage = 'https://plaud.ai' + # Plaud's frameworks are built for iOS 15+ (arm64 device only). + s.platforms = { :ios => '15.1' } + s.swift_version = '5.9' + s.source = { git: '' } + s.static_framework = true + + s.dependency 'ExpoModulesCore' + + # Only compile the module's own Swift here; the SDK binaries are vendored below. + s.source_files = '*.{h,m,swift}' + + # The Plaud SDK, shipped as precompiled binary frameworks. CocoaPods embeds and + # code-signs these automatically (the PlaudDeviceBasicSDK.bundle is nested inside + # its .framework, so it comes along for free — no separate resource_bundles needed). + s.vendored_frameworks = [ + 'Frameworks/PlaudBleSDK.xcframework', + 'Frameworks/PlaudWiFiSDK.xcframework', + 'Frameworks/PlaudDeviceBasicSDK.xcframework' + ] + + s.pod_target_xcconfig = { + 'DEFINES_MODULE' => 'YES' + } +end diff --git a/react-native-demo/modules/plaud-sdk/ios/PlaudSdkModule.swift b/react-native-demo/modules/plaud-sdk/ios/PlaudSdkModule.swift new file mode 100644 index 0000000..b0a4be3 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/ios/PlaudSdkModule.swift @@ -0,0 +1,405 @@ +import ExpoModulesCore +import PlaudDeviceBasicSDK +import PlaudBleSDK + +// MARK: - Typed argument records + +struct InitOptions: Record { + @Field var userAccessToken: String = "" + @Field var customDomain: String = "" + @Field var userId: String? +} + +struct ConnectOptions: Record { + @Field var uuid: String? + @Field var serialNumber: String? + @Field var deviceToken: String? +} + +struct DepairOptions: Record { + @Field var clear: Bool = true +} + +struct FileListOptions: Record { + @Field var startSessionId: Int = 0 +} + +struct ExportOptions: Record { + @Field var sessionId: Int = -1 + @Field var format: String = "mp3" + @Field var channels: Int = 1 +} + +/// Expo module bridging Plaud's native iOS SDK. This is the RN counterpart of the +/// Capacitor `PlaudSdk` plugin (PlaudSdkPlugin.swift). Expo's `Module` base class isn't +/// `NSObject`-derived, so it can't itself conform to the `@objc PlaudDeviceAgentProtocol`; +/// all SDK interaction and delegate handling lives in `PlaudSdkController` (an NSObject), +/// which emits results back to JS through the closure the module hands it. +/// +/// Surface (mirrors the Capacitor plugin, minus the `readFile`/`putBinary` CORS shims that +/// only existed because Capacitor loaded a remote-origin WebView — RN has no such +/// constraint and reads exports with expo-file-system / uploads with fetch): +/// connection lifecycle, file listing, and on-device audio export. +public class PlaudSdkModule: Module { + private lazy var controller = PlaudSdkController { [weak self] event, body in + // Hop to the main queue before crossing into JS, as the Capacitor plugin's `notify` did — + // SDK delegate callbacks can arrive on arbitrary threads. + DispatchQueue.main.async { self?.sendEvent(event, body) } + } + + public func definition() -> ModuleDefinition { + Name("PlaudSdk") + + Events( + "scanResult", "scanTimeout", "connectState", "penState", "bind", "fileList", + "exportProgress", "recordStart", "recordStop", "recordPause", "recordResume", "depair" + ) + + AsyncFunction("initSDK") { (options: InitOptions, promise: Promise) in + self.controller.initSDK(options, promise: promise) + } + + AsyncFunction("startScan") { (promise: Promise) in + self.controller.startScan(promise: promise) + } + + AsyncFunction("stopScan") { (promise: Promise) in + self.controller.stopScan(promise: promise) + } + + AsyncFunction("connectBleDevice") { (options: ConnectOptions, promise: Promise) in + self.controller.connectBleDevice(options, promise: promise) + } + + AsyncFunction("disconnect") { (promise: Promise) in + self.controller.disconnect(promise: promise) + } + + AsyncFunction("depair") { (options: DepairOptions?, promise: Promise) in + self.controller.depair(options ?? DepairOptions(), promise: promise) + } + + AsyncFunction("isConnected") { (promise: Promise) in + self.controller.isConnected(promise: promise) + } + + AsyncFunction("getFileList") { (options: FileListOptions?, promise: Promise) in + self.controller.getFileList(options ?? FileListOptions(), promise: promise) + } + + AsyncFunction("exportAudio") { (options: ExportOptions, promise: Promise) in + self.controller.exportAudio(options, promise: promise) + } + } +} + +/// Owns every interaction with `PlaudDeviceAgent`, holds the scan cache / in-flight export +/// bridges, and is the SDK's `PlaudDeviceAgentProtocol` delegate. Delegate callbacks are +/// forwarded to JS via `emit`, the closure supplied by the module (which calls `sendEvent`). +private final class PlaudSdkController: NSObject, PlaudDeviceAgentProtocol { + private let emit: (String, [String: Any?]) -> Void + + /// `connectBleDevice` needs the actual `BleDevice` the SDK handed us during a scan — JS + /// only carries identifiers, so we retain scanned objects and look them up. Keyed by + /// `uuid` (the CoreBluetooth peripheral id). Touched only on the main queue. + private var scannedDevices: [String: BleDevice] = [:] + + /// Retains in-flight export bridges so neither they nor their `Promise` are deallocated + /// before the SDK finishes. Touched only on the main queue. + private var exportCallbacks: Set = [] + + /// App-level user identifier from `initSDK`, reused as the default connect `deviceToken` + /// (it's what binds the device to the user during the handshake). + private var userId: String? + + private var scanReadyAttempts = 0 + private var isScanning = false + + init(emit: @escaping (String, [String: Any?]) -> Void) { + self.emit = emit + super.init() + } + + // MARK: - Connection lifecycle + + func initSDK(_ options: InitOptions, promise: Promise) { + guard !options.userAccessToken.isEmpty else { + promise.reject("ERR_PLAUD_ARGS", "userAccessToken is required") + return + } + guard !options.customDomain.isEmpty else { + promise.reject("ERR_PLAUD_ARGS", "customDomain is required (domain only, no https://)") + return + } + let userId = options.userId + DispatchQueue.main.async { + self.userId = userId + let agent = PlaudDeviceAgent.shared + agent.delegate = self + agent.initSDK(userAccessToken: options.userAccessToken, customDomain: options.customDomain) + promise.resolve(nil) + } + } + + func startScan(promise: Promise) { + DispatchQueue.main.async { + // CoreBluetooth silently drops scanForPeripherals until the central manager reaches + // .poweredOn (async after initSDK, gated on the first-launch permission prompt), so + // gate the real scan on the power-on state — same as the Capacitor plugin. + self.isScanning = true + self.scanReadyAttempts = 0 + self.attemptScanWhenReady() + promise.resolve(nil) + } + } + + /// Fires the SDK scan once Bluetooth is powered on, polling ~18s. Main queue only. + private func attemptScanWhenReady() { + guard isScanning else { return } + if BleAgent.shared.isPoweredOn { + PlaudDeviceAgent.shared.startScan() + return + } + scanReadyAttempts += 1 + if scanReadyAttempts > 60 { + emit("scanTimeout", ["reason": "bluetoothNotPoweredOn"]) + return + } + DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { [weak self] in + self?.attemptScanWhenReady() + } + } + + func stopScan(promise: Promise) { + DispatchQueue.main.async { + self.isScanning = false + PlaudDeviceAgent.shared.stopScan() + promise.resolve(nil) + } + } + + func connectBleDevice(_ options: ConnectOptions, promise: Promise) { + // The app always connects with a device token (the app-level userId) so the handshake + // binds the device to the user. Prefer an explicit token, else the remembered userId. + let token = options.deviceToken ?? self.userId + DispatchQueue.main.async { + self.isScanning = false + guard let device = self.lookupDevice(uuid: options.uuid, serialNumber: options.serialNumber) else { + promise.reject("ERR_PLAUD_UNKNOWN_DEVICE", + "Unknown device — scan first, then connect by uuid or serialNumber") + return + } + if let token = token, !token.isEmpty { + PlaudDeviceAgent.shared.connectBleDevice(bleDevice: device, deviceToken: token) + } else { + PlaudDeviceAgent.shared.connectBleDevice(bleDevice: device) + } + promise.resolve(nil) + } + } + + func disconnect(promise: Promise) { + DispatchQueue.main.async { + PlaudDeviceAgent.shared.disconnect() + promise.resolve(nil) + } + } + + func depair(_ options: DepairOptions, promise: Promise) { + DispatchQueue.main.async { + PlaudDeviceAgent.shared.depair(clear: options.clear) + promise.resolve(nil) + } + } + + func isConnected(promise: Promise) { + DispatchQueue.main.async { + promise.resolve(["connected": PlaudDeviceAgent.shared.isConnected()]) + } + } + + // MARK: - Files + + func getFileList(_ options: FileListOptions, promise: Promise) { + DispatchQueue.main.async { + PlaudDeviceAgent.shared.getFileList(startSessionId: options.startSessionId) + promise.resolve(nil) + } + } + + /// Decode a recording to Documents/PlaudExports. Resolves `{ sessionId, outputPath }` on + /// completion; emits `exportProgress` along the way. `format` defaults to mp3. + func exportAudio(_ options: ExportOptions, promise: Promise) { + guard options.sessionId >= 0 else { + promise.reject("ERR_PLAUD_ARGS", "sessionId is required") + return + } + let format = Self.exportFormat(from: options.format) + let channels = options.channels + let sessionId = options.sessionId + DispatchQueue.main.async { + let dir = FileManager.default + .urls(for: .documentDirectory, in: .userDomainMask)[0] + .appendingPathComponent("PlaudExports", isDirectory: true) + try? FileManager.default.createDirectory(at: dir, withIntermediateDirectories: true) + + let bridge = ExportCallbackBridge(sessionId: sessionId, promise: promise, controller: self) + self.exportCallbacks.insert(bridge) + PlaudDeviceAgent.shared.exportAudio( + sessionId: sessionId, + outputDir: dir.path, + format: format, + channels: channels, + callback: bridge + ) + } + } + + // MARK: - PlaudDeviceAgentProtocol + + func blePenState(state: Int, privacy: Int, keyState: Int, uDisk: Int, + findMyToken: Int, hasSndpKey: Int, deviceAccessToken: Int) { + emit("penState", [ + "state": state, "privacy": privacy, "keyState": keyState, "uDisk": uDisk, + "findMyToken": findMyToken, "hasSndpKey": hasSndpKey, "deviceAccessToken": deviceAccessToken + ]) + } + + func bleScanResult(bleDevices: [BleDevice]) { + DispatchQueue.main.async { + for d in bleDevices { self.scannedDevices[d.uuid] = d } + } + let devices = bleDevices.map { d -> [String: Any] in + [ + "name": d.name, + "uuid": d.uuid, + "serialNumber": d.serialNumber, + "rssi": d.rssi, + "supportWiFi": d.supportWiFi + ] + } + emit("scanResult", ["devices": devices]) + } + + func bleScanOverTime() { + emit("scanTimeout", [:]) + } + + func bleConnectState(state: Int) { + // 1 = connected, 0 = disconnected, {2, -1, -2} = connection/handshake failure. + let failed = (state == 2 || state == -1 || state == -2) + emit("connectState", ["connected": state == 1, "failed": failed, "state": state]) + } + + func bleBind(sn: String?, status: Int, protVersion: Int, timezone: Int) { + emit("bind", ["sn": sn, "status": status, "protVersion": protVersion]) + } + + // MARK: - Recording (device-initiated: physical button / VAD) + + func bleRecordStart(sessionId: Int, start: Int, status: Int, scene: Int, + startTime: Int, reason: Int) { + emit("recordStart", [ + "sessionId": sessionId, "start": start, "status": status, + "scene": scene, "startTime": startTime, "reason": reason + ]) + } + + func bleRecordStop(sessionId: Int, reason: Int, fileExist: Bool, fileSize: Int) { + emit("recordStop", [ + "sessionId": sessionId, "reason": reason, "fileExist": fileExist, "fileSize": fileSize + ]) + } + + func bleRecordPause(sessionId: Int, reason: Int, fileExist: Bool, fileSize: Int) { + emit("recordPause", [ + "sessionId": sessionId, "reason": reason, "fileExist": fileExist, "fileSize": fileSize + ]) + } + + func bleRecordResume(sessionId: Int, start: Int, status: Int, scene: Int, startTime: Int) { + emit("recordResume", [ + "sessionId": sessionId, "start": start, "status": status, + "scene": scene, "startTime": startTime + ]) + } + + func bleDepair(_ status: Int) { + emit("depair", ["status": status]) + } + + func bleFileList(bleFiles: [BleFile]) { + let files = bleFiles.map { f -> [String: Any] in + [ + "sn": f.sn, + "sessionId": f.sessionId, + "size": f.size, + "scenes": f.scenes, + "channels": f.channels, + "isOgg": f.isOgg, + "isMusic": f.isMusic, + "duration": f.duration() + ] + } + emit("fileList", ["files": files]) + } + + // MARK: - Helpers + + private func lookupDevice(uuid: String?, serialNumber: String?) -> BleDevice? { + if let uuid = uuid, let d = scannedDevices[uuid] { return d } + if let serial = serialNumber { + return scannedDevices.values.first { $0.serialNumber == serial } + } + return nil + } + + private static func exportFormat(from raw: String?) -> AudioExportFormat { + switch (raw ?? "mp3").lowercased() { + case "pcm": return .pcm + case "wav": return .wav + case "opus": return .opus + default: return .mp3 + } + } + + fileprivate func emitEvent(_ event: String, _ body: [String: Any?]) { + emit(event, body) + } + + fileprivate func finishExport(_ bridge: ExportCallbackBridge) { + DispatchQueue.main.async { [weak self] in + self?.exportCallbacks.remove(bridge) + } + } +} + +/// Adapts the SDK's per-call `AudioExportCallback` to the module: progress becomes an +/// `exportProgress` event, completion/error resolves/rejects the originating Promise. +private final class ExportCallbackBridge: NSObject, AudioExportCallback { + private let sessionId: Int + private let promise: Promise + private weak var controller: PlaudSdkController? + + init(sessionId: Int, promise: Promise, controller: PlaudSdkController) { + self.sessionId = sessionId + self.promise = promise + self.controller = controller + } + + func onProgress(_ progress: Int, message: String) { + controller?.emitEvent("exportProgress", [ + "sessionId": sessionId, "progress": progress, "message": message + ]) + } + + func onComplete(outputPath: String) { + promise.resolve(["sessionId": sessionId, "outputPath": outputPath]) + if let controller = controller { controller.finishExport(self) } + } + + func onError(_ error: String) { + promise.reject("ERR_PLAUD_EXPORT", error) + if let controller = controller { controller.finishExport(self) } + } +} diff --git a/react-native-demo/modules/plaud-sdk/package.json b/react-native-demo/modules/plaud-sdk/package.json new file mode 100644 index 0000000..7792fcb --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/package.json @@ -0,0 +1,9 @@ +{ + "name": "plaud-sdk", + "version": "1.0.0", + "description": "Local Expo module bridging Plaud's native iOS device SDK (BLE connect, file list, on-device audio export).", + "main": "index.ts", + "author": "Plaud", + "license": "UNLICENSED", + "private": true +} diff --git a/react-native-demo/modules/plaud-sdk/src/PlaudSdk.types.ts b/react-native-demo/modules/plaud-sdk/src/PlaudSdk.types.ts new file mode 100644 index 0000000..cd08bd5 --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/src/PlaudSdk.types.ts @@ -0,0 +1,142 @@ +import type { NativeModule } from 'expo-modules-core'; + +/** A device surfaced by the SDK's `bleScanResult` callback. */ +export interface PlaudScanDevice { + name: string; + uuid: string; + serialNumber: string; + rssi: number; + supportWiFi: boolean; +} + +export interface PlaudScanResult { + devices: PlaudScanDevice[]; +} + +export interface PlaudConnectState { + connected: boolean; + /** True for connection/handshake failure (state 2/-1/-2), vs. a normal disconnect. */ + failed: boolean; + state: number; +} + +export interface PlaudPenState { + state: number; + privacy: number; + keyState: number; + uDisk: number; + findMyToken: number; + hasSndpKey: number; + deviceAccessToken: number; +} + +/** A recording stored on the device, from the `fileList` event. */ +export interface PlaudFile { + sn: string; + sessionId: number; + size: number; + scenes: number; + channels: number; + isOgg: boolean; + isMusic: boolean; + /** Duration in seconds. */ + duration: number; +} + +export interface PlaudFileList { + files: PlaudFile[]; +} + +export interface PlaudExportProgress { + sessionId: number; + progress: number; + message: string; +} + +/** Device-initiated recording started (physical button / VAD). */ +export interface PlaudRecordStart { + sessionId: number; + start: number; + status: number; + scene: number; + startTime: number; + reason: number; +} + +/** Device-initiated recording stopped/paused, with the resulting file info. */ +export interface PlaudRecordStop { + sessionId: number; + reason: number; + fileExist: boolean; + fileSize: number; +} + +/** Device-initiated recording resumed. */ +export interface PlaudRecordResume { + sessionId: number; + start: number; + status: number; + scene: number; + startTime: number; +} + +export type PlaudAudioFormat = 'pcm' | 'mp3' | 'wav' | 'opus'; + +/** Event name → listener signature. Consumed by `PlaudSdk.addListener(name, cb)`. */ +export type PlaudSdkEvents = { + scanResult: (data: PlaudScanResult) => void; + scanTimeout: (data: { reason?: string }) => void; + connectState: (data: PlaudConnectState) => void; + penState: (data: PlaudPenState) => void; + bind: (data: { sn: string | null; status: number; protVersion: number }) => void; + fileList: (data: PlaudFileList) => void; + exportProgress: (data: PlaudExportProgress) => void; + recordStart: (data: PlaudRecordStart) => void; + recordStop: (data: PlaudRecordStop) => void; + recordPause: (data: PlaudRecordStop) => void; + recordResume: (data: PlaudRecordResume) => void; + depair: (data: { status: number }) => void; +}; + +/** + * Typed shape of the native `PlaudSdk` module (see modules/plaud-sdk/ios/PlaudSdkModule.swift). + * It extends `NativeModule`, so `addListener` / `removeListener` for every event above come + * for free and are fully typed. + * + * iOS only: on Android / the simulator (no arm64 SDK slice) these calls reject. Guard with + * `PlaudSdk.isAvailable` at call sites. + */ +export declare class PlaudSdkModule extends NativeModule { + /** + * Initialise the SDK with a per-user JWT. `customDomain` is domain-only (no https://). + * `userId` is the app-level identifier reused as the default connect `deviceToken`. + */ + initSDK(options: { + userAccessToken: string; + customDomain: string; + userId?: string; + }): Promise; + startScan(): Promise; + stopScan(): Promise; + /** Connect to a device from a prior `scanResult`, by `uuid` (preferred) or `serialNumber`. */ + connectBleDevice(options: { + uuid?: string; + serialNumber?: string; + deviceToken?: string; + }): Promise; + disconnect(): Promise; + /** Unpair; with `clear: true` (default) also clears local pairing state. Result via `depair` event. */ + depair(options?: { clear?: boolean }): Promise; + isConnected(): Promise<{ connected: boolean }>; + /** Request the recording list; results arrive via the `fileList` event. */ + getFileList(options?: { startSessionId?: number }): Promise; + /** + * Decode a recording to a file in the app's Documents/PlaudExports dir. Resolves with the + * written path; emits `exportProgress` events. `format` defaults to "mp3". + */ + exportAudio(options: { + sessionId: number; + format?: PlaudAudioFormat; + channels?: number; + }): Promise<{ sessionId: number; outputPath: string }>; +} diff --git a/react-native-demo/modules/plaud-sdk/src/index.ts b/react-native-demo/modules/plaud-sdk/src/index.ts new file mode 100644 index 0000000..4dfabee --- /dev/null +++ b/react-native-demo/modules/plaud-sdk/src/index.ts @@ -0,0 +1,31 @@ +import { requireNativeModule } from 'expo-modules-core'; +import { Platform } from 'react-native'; +import type { PlaudSdkModule } from './PlaudSdk.types'; +export * from './PlaudSdk.types'; + +let nativeModule: PlaudSdkModule | null = null; +try { + if (Platform.OS === 'ios') { + nativeModule = requireNativeModule('PlaudSdk'); + } +} catch { + nativeModule = null; +} + +export const isAvailable: boolean = nativeModule != null; + +export const PlaudSdk: PlaudSdkModule = nativeModule ?? + (new Proxy( + {}, + { + get(_target, prop) { + if (prop === 'addListener' || prop === 'removeListener' || prop === 'removeAllListeners') { + return () => ({ remove() {} }); + } + return () => + Promise.reject(new Error('PlaudSdk native module is unavailable on this platform')); + }, + }, + ) as PlaudSdkModule); + +export default PlaudSdk; diff --git a/react-native-demo/package-lock.json b/react-native-demo/package-lock.json index e44e19d..4884d99 100644 --- a/react-native-demo/package-lock.json +++ b/react-native-demo/package-lock.json @@ -12,6 +12,7 @@ "expo": "~57.0.7", "expo-constants": "~57.0.6", "expo-device": "~57.0.1", + "expo-file-system": "~57.0.1", "expo-font": "~57.0.1", "expo-glass-effect": "~57.0.1", "expo-image": "~57.0.1", diff --git a/react-native-demo/package.json b/react-native-demo/package.json index 6682849..cd093ca 100644 --- a/react-native-demo/package.json +++ b/react-native-demo/package.json @@ -7,6 +7,7 @@ "expo": "~57.0.7", "expo-constants": "~57.0.6", "expo-device": "~57.0.1", + "expo-file-system": "~57.0.1", "expo-font": "~57.0.1", "expo-glass-effect": "~57.0.1", "expo-image": "~57.0.1", @@ -35,7 +36,7 @@ "start": "expo start", "reset-project": "node ./scripts/reset-project.js", "android": "expo run:android", - "ios": "expo run:ios", + "ios": "expo run:ios --device", "web": "expo start --web", "lint": "expo lint" }, diff --git a/react-native-demo/src/app/_layout.tsx b/react-native-demo/src/app/_layout.tsx index b3fd50c..30d0a7d 100644 --- a/react-native-demo/src/app/_layout.tsx +++ b/react-native-demo/src/app/_layout.tsx @@ -1,18 +1,17 @@ -import { DarkTheme, DefaultTheme, ThemeProvider } from 'expo-router'; +import { DarkTheme, DefaultTheme, ThemeProvider, Stack } from 'expo-router'; import * as SplashScreen from 'expo-splash-screen'; import { useColorScheme } from 'react-native'; import { AnimatedSplashOverlay } from '@/components/animated-icon'; -import AppTabs from '@/components/app-tabs'; SplashScreen.preventAutoHideAsync(); -export default function TabLayout() { +export default function RootLayout() { const colorScheme = useColorScheme(); return ( - + ); } diff --git a/react-native-demo/src/app/index.tsx b/react-native-demo/src/app/index.tsx index 049f678..d6f4a2e 100644 --- a/react-native-demo/src/app/index.tsx +++ b/react-native-demo/src/app/index.tsx @@ -1,4 +1,5 @@ -import { useCallback, useEffect, useRef, useState } from 'react'; +import { File } from 'expo-file-system'; +import { useEffect, useState } from 'react'; import { Alert, Pressable, ScrollView, StyleSheet, Text, View } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; @@ -7,26 +8,30 @@ import { FileModal } from '@/components/plaud/file-modal'; import { Icon } from '@/components/plaud/icon'; import type { FileResult, PlaudFile, PlaudScanDevice } from '@/components/plaud/types'; import { BottomTabInset, MaxContentWidth, PlaudColors, Spacing } from '@/constants/theme'; +import { transcribeExportedFile } from '@/lib/plaud-transcription'; +import { PlaudSdk, isAvailable } from 'plaud-sdk'; const PLAUD_DOMAIN = 'platform-us.plaud.ai'; const USER_ID = 'jackmu'; -// --- Mock data (stands in for the native Plaud SDK, not yet wired up) --- -const MOCK_DEVICES: PlaudScanDevice[] = [ - { name: 'Plaud Note Pro', serialNumber: 'PN-4823', uuid: 'uuid-note-pro' }, - { name: 'Plaud NotePin', serialNumber: 'NP-1150', uuid: 'uuid-notepin' }, -]; +const errMessage = (e: unknown) => (e instanceof Error ? e.message : String(e)); -const MOCK_FILES: PlaudFile[] = [ - { sessionId: 1042, duration: 342, size: 5_242_880 }, - { sessionId: 1041, duration: 128, size: 1_998_848 }, - { sessionId: 1039, duration: 74, size: 1_146_880 }, -]; - -const MOCK_TRANSCRIPT = - "Okay, so for the Q3 roadmap, the two big rocks are the native SDK bridge and the " + - 'transcription pipeline. Let’s get the export flow stable first, then layer streaming ' + - 'on top. I’ll circle back with the team on timelines by Friday.'; +/** + * Mint the per-user Plaud JWT that `initSDK` requires. In the Capacitor demo the Next.js + * web app minted this server-side; here it's an app/backend concern. + * + * TODO(plaud): wire this to your token endpoint. For local dev, set + * `EXPO_PUBLIC_PLAUD_ACCESS_TOKEN` in a `.env` file (Expo inlines `EXPO_PUBLIC_*` at build). + */ +async function getUserAccessToken(): Promise { + const token = process.env.EXPO_PUBLIC_PLAUD_ACCESS_TOKEN; + if (!token) { + throw new Error( + 'No Plaud access token — set EXPO_PUBLIC_PLAUD_ACCESS_TOKEN or wire a mint endpoint in getUserAccessToken().', + ); + } + return token; +} export default function Home() { const [devices, setDevices] = useState([]); @@ -41,21 +46,90 @@ export default function Home() { const [results, setResults] = useState>({}); const [openSessionId, setOpenSessionId] = useState(null); - const timers = useRef[]>([]); - const later = useCallback((fn: () => void, ms: number) => { - timers.current.push(setTimeout(fn, ms)); - }, []); + const updateResult = (sessionId: number, patch: Partial) => + setResults((prev) => ({ ...prev, [sessionId]: { ...prev[sessionId], ...patch } })); - // Simulate minting the per-user access token on mount. + // Initialise the native SDK once, after minting the per-user token. useEffect(() => { - const t = setTimeout(() => setTokenReady(true), 500); - return () => clearTimeout(t); + if (!isAvailable) { + setError('Plaud native module unavailable — run a dev build on a physical iOS device.'); + return; + } + let cancelled = false; + (async () => { + try { + const userAccessToken = await getUserAccessToken(); + await PlaudSdk.initSDK({ userAccessToken, customDomain: PLAUD_DOMAIN, userId: USER_ID }); + if (!cancelled) setTokenReady(true); + } catch (e) { + if (!cancelled) setError(`SDK init failed: ${errMessage(e)}`); + } + })(); + return () => { + cancelled = true; + }; }, []); - useEffect(() => () => timers.current.forEach(clearTimeout), []); + // Subscribe to the native event stream. Every listener drives a piece of screen state. + useEffect(() => { + if (!isAvailable) return; - const updateResult = (sessionId: number, patch: Partial) => - setResults((prev) => ({ ...prev, [sessionId]: { ...prev[sessionId], ...patch } })); + const subs = [ + PlaudSdk.addListener('scanResult', ({ devices: found }) => setDevices(found)), + PlaudSdk.addListener('scanTimeout', ({ reason } = {}) => { + setScanning(false); + if (reason === 'bluetoothNotPoweredOn') { + setError( + 'Bluetooth isn’t available — enable Bluetooth and grant the app permission, then try again.', + ); + } + }), + PlaudSdk.addListener('connectState', ({ connected: isConn, failed }) => { + if (isConn) { + setConnected(true); + setScanning(false); + PlaudSdk.getFileList().catch((e) => setError(`getFileList failed: ${errMessage(e)}`)); + } else if (failed) { + setScanning(false); + setError('Connection failed — move the device closer and try again.'); + } else { + setConnected(false); + } + }), + PlaudSdk.addListener('fileList', ({ files: found }) => setFiles(found)), + PlaudSdk.addListener('recordStart', ({ sessionId, scene }) => { + setIsLive(true); + setRecording(`Recording · session ${sessionId} · scene ${scene}`); + }), + PlaudSdk.addListener('recordResume', ({ sessionId }) => { + setIsLive(true); + setRecording(`Recording · session ${sessionId}`); + }), + PlaudSdk.addListener('recordStop', ({ sessionId, fileSize }) => { + setIsLive(false); + setRecording(`Stopped · session ${sessionId} · ${(fileSize / 1024).toFixed(0)} KB`); + // A new recording just landed — refresh the on-device list. + PlaudSdk.getFileList().catch(() => {}); + }), + PlaudSdk.addListener('recordPause', ({ sessionId }) => { + setIsLive(false); + setRecording(`Paused · session ${sessionId}`); + }), + PlaudSdk.addListener('exportProgress', ({ sessionId, progress, message }) => { + updateResult(sessionId, { exportInfo: `${progress}% ${message}` }); + }), + PlaudSdk.addListener('depair', () => { + setConnected(false); + setDevices([]); + setFiles([]); + setRecording(null); + setIsLive(false); + setResults({}); + setOpenSessionId(null); + }), + ]; + return () => subs.forEach((s) => s.remove()); + }, []); const handleScan = () => { setError(null); @@ -65,28 +139,19 @@ export default function Home() { } setDevices([]); setScanning(true); - // Devices trickle in from the BLE scan. - later(() => setDevices([MOCK_DEVICES[0]]), 700); - later(() => setDevices(MOCK_DEVICES), 1400); + PlaudSdk.startScan().catch((e) => { + setScanning(false); + setError(`Scan failed: ${errMessage(e)}`); + }); }; - const handleConnect = (_d: PlaudScanDevice) => { + const handleConnect = (d: PlaudScanDevice) => { setError(null); - setScanning(false); - setConnected(true); - setFiles(MOCK_FILES); - - // Recording is driven by the physical device — simulate a capture arriving - // shortly after connect so the live banner is visible. - later(() => { - setIsLive(true); - setRecording('Recording · session 1043 · scene meeting'); - }, 900); - later(() => { - setIsLive(false); - setRecording('Stopped · session 1043 · 812 KB'); - setFiles((prev) => [{ sessionId: 1043, duration: 52, size: 831_488 }, ...prev]); - }, 4400); + // Connection progress arrives via the `connectState` event (which flips `connected` + // and loads the file list). Identify the device by uuid from the scan result. + PlaudSdk.connectBleDevice({ uuid: d.uuid }).catch((e) => + setError(`Connect failed: ${errMessage(e)}`), + ); }; const handleDepair = () => { @@ -95,20 +160,14 @@ export default function Home() { { text: 'Unpair', style: 'destructive', - onPress: () => { - setConnected(false); - setDevices([]); - setFiles([]); - setRecording(null); - setIsLive(false); - setResults({}); - setOpenSessionId(null); - }, + // State resets when the native `depair` event arrives. + onPress: () => + PlaudSdk.depair({ clear: true }).catch((e) => setError(`Unpair failed: ${errMessage(e)}`)), }, ]); }; - const exportAndTranscribe = (f: PlaudFile) => { + const exportAndTranscribe = async (f: PlaudFile) => { setError(null); updateResult(f.sessionId, { status: 'exporting', @@ -118,30 +177,41 @@ export default function Home() { transcribeStatus: undefined, src: undefined, }); - later(() => updateResult(f.sessionId, { exportInfo: '48% decoding…' }), 500); - later( - () => - updateResult(f.sessionId, { - status: 'transcribing', - src: 'mock://exported.mp3', - exportInfo: 'saved → exported.mp3', - transcribeStatus: 'uploading to Plaud… 100%', - }), - 1200, - ); - later( - () => updateResult(f.sessionId, { transcribeStatus: 'transcribing… (processing)' }), - 1900, - ); - later( - () => - updateResult(f.sessionId, { - status: 'ready', - transcribeStatus: 'transcription complete', - transcript: MOCK_TRANSCRIPT, - }), - 3000, - ); + try { + // Native: decode the recording to an mp3 in Documents/PlaudExports. `exportProgress` + // events update exportInfo along the way. + const { outputPath } = await PlaudSdk.exportAudio({ sessionId: f.sessionId, format: 'mp3' }); + const uri = outputPath.startsWith('file://') ? outputPath : `file://${outputPath}`; + const name = outputPath.split('/').pop() ?? 'export.mp3'; + let sizeLabel = ''; + try { + const size = new File(uri).size; + if (size != null) sizeLabel = ` (${(size / 1024).toFixed(0)} KB)`; + } catch { + // size is best-effort; the export itself already succeeded. + } + updateResult(f.sessionId, { + status: 'transcribing', + src: uri, + exportInfo: `saved → ${name}${sizeLabel}`, + transcribeStatus: 'preparing upload…', + }); + + // Upload the exported file to Plaud and poll for the transcript. ⚠️ DEMO ONLY — this + // calls the Plaud platform API straight from the device with EXPO_PUBLIC_ credentials; + // in production that upload/transcribe belongs behind a backend (see the Capacitor app). + const userAccessToken = await getUserAccessToken(); + const transcript = await transcribeExportedFile(uri, userAccessToken, (msg) => + updateResult(f.sessionId, { transcribeStatus: msg }), + ); + updateResult(f.sessionId, { + status: 'ready', + transcribeStatus: 'transcription complete', + transcript, + }); + } catch (e) { + updateResult(f.sessionId, { status: 'error', error: errMessage(e) }); + } }; const handleFileClick = (f: PlaudFile) => { @@ -152,7 +222,7 @@ export default function Home() { const handleRefreshFiles = () => { setError(null); - setFiles(files.length ? files : MOCK_FILES); + PlaudSdk.getFileList().catch((e) => setError(`getFileList failed: ${errMessage(e)}`)); }; const openFile = openSessionId != null ? files.find((x) => x.sessionId === openSessionId) : null; diff --git a/react-native-demo/src/components/app-tabs.tsx b/react-native-demo/src/components/app-tabs.tsx deleted file mode 100644 index 80719bc..0000000 --- a/react-native-demo/src/components/app-tabs.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import { NativeTabs } from 'expo-router/unstable-native-tabs'; -import { useColorScheme } from 'react-native'; - -import { Colors } from '@/constants/theme'; - -export default function AppTabs() { - const scheme = useColorScheme(); - const colors = Colors[scheme === 'unspecified' ? 'light' : scheme]; - - return ( - - - Home - - - - - Explore - - - - ); -} diff --git a/react-native-demo/src/components/app-tabs.web.tsx b/react-native-demo/src/components/app-tabs.web.tsx deleted file mode 100644 index ca2787d..0000000 --- a/react-native-demo/src/components/app-tabs.web.tsx +++ /dev/null @@ -1,115 +0,0 @@ -import { - Tabs, - TabList, - TabTrigger, - TabSlot, - TabTriggerSlotProps, - TabListProps, -} from 'expo-router/ui'; -import { SymbolView } from 'expo-symbols'; -import { Pressable, useColorScheme, View, StyleSheet } from 'react-native'; - -import { ExternalLink } from './external-link'; -import { ThemedText } from './themed-text'; -import { ThemedView } from './themed-view'; - -import { Colors, MaxContentWidth, Spacing } from '@/constants/theme'; - -export default function AppTabs() { - return ( - - - - - - Home - - - Explore - - - - - ); -} - -export function TabButton({ children, isFocused, ...props }: TabTriggerSlotProps) { - return ( - pressed && styles.pressed}> - - - {children} - - - - ); -} - -export function CustomTabList(props: TabListProps) { - const scheme = useColorScheme(); - const colors = Colors[scheme === 'unspecified' ? 'light' : scheme]; - - return ( - - - - Expo Starter - - - {props.children} - - - - Docs - - - - - - ); -} - -const styles = StyleSheet.create({ - tabListContainer: { - position: 'absolute', - width: '100%', - padding: Spacing.three, - justifyContent: 'center', - alignItems: 'center', - flexDirection: 'row', - }, - innerContainer: { - paddingVertical: Spacing.two, - paddingHorizontal: Spacing.five, - borderRadius: Spacing.five, - flexDirection: 'row', - alignItems: 'center', - flexGrow: 1, - gap: Spacing.two, - maxWidth: MaxContentWidth, - }, - brandText: { - marginRight: 'auto', - }, - pressed: { - opacity: 0.7, - }, - tabButtonView: { - paddingVertical: Spacing.one, - paddingHorizontal: Spacing.three, - borderRadius: Spacing.three, - }, - externalPressable: { - flexDirection: 'row', - justifyContent: 'center', - alignItems: 'center', - gap: Spacing.one, - marginLeft: Spacing.three, - }, -}); diff --git a/react-native-demo/src/components/plaud/file-modal.tsx b/react-native-demo/src/components/plaud/file-modal.tsx index 819b796..4f2c767 100644 --- a/react-native-demo/src/components/plaud/file-modal.tsx +++ b/react-native-demo/src/components/plaud/file-modal.tsx @@ -23,7 +23,7 @@ export function FileModal({ {/* Stop taps inside the card from closing the modal. */} - {}}> + { }}> {/* Header */} @@ -39,21 +39,6 @@ export function FileModal({ - {/* Audio — available once the export finishes. */} - {result?.src ? ( - - - - {file.duration}s - - ) : ( - - - {status === 'error' ? 'Export failed.' : 'Exporting audio…'} - - - )} - {/* Progress line while exporting / transcribing. */} {busy && result?.transcribeStatus && ( {result.transcribeStatus} diff --git a/react-native-demo/src/lib/plaud-transcription.ts b/react-native-demo/src/lib/plaud-transcription.ts new file mode 100644 index 0000000..8949b86 --- /dev/null +++ b/react-native-demo/src/lib/plaud-transcription.ts @@ -0,0 +1,192 @@ +import { File } from 'expo-file-system'; + +/** + * Client-side Plaud transcription flow. ⚠️ DEMO ONLY. + * + * In production the Capacitor app called this from a backend, because it needs the + * partner API key. Here we call the Plaud platform API directly from the device using + * Expo public env vars — which means `EXPO_PUBLIC_PLAUD_CLIENT_ID` / `EXPO_PUBLIC_PLAUD_API_KEY` + * are inlined into the JS bundle and are extractable. Fine for a demo build, never ship it. + * + * Flow (mirrors plaud-embedded-playground's /api/upload + /api/transcribe and the SDK + * reference PlaudAPIService.swift): + * 1. upload → generate-presigned-urls → PUT parts to S3 → complete-upload → DownloadUrl + * (Bearer USER token — the same token passed to initSDK) + * 2. submit → POST /open/partner/ai/transcriptions/ { file_url } (X-Client-* headers) + * 3. poll → GET /open/partner/ai/transcriptions/{id} (X-Client-* headers) + */ + +const BASE_URL = 'https://platform-us.plaud.ai/developer/api'; + +type StatusFn = (message: string) => void; + +/** Transcription API auth: partner client id + api key (X-Client-* headers). */ +function transcriptionHeaders(): Record { + const clientId = process.env.EXPO_PUBLIC_PLAUD_CLIENT_ID; + const apiKey = process.env.EXPO_PUBLIC_PLAUD_API_KEY; + if (!clientId || !apiKey) { + throw new Error( + 'Missing transcription credentials — set EXPO_PUBLIC_PLAUD_CLIENT_ID and EXPO_PUBLIC_PLAUD_API_KEY.', + ); + } + return { 'X-Client-Id': clientId, 'X-Client-Api-Key': apiKey }; +} + +async function readJson(res: Response): Promise { + const text = await res.text(); + let body: any = null; + try { + body = text ? JSON.parse(text) : null; + } catch { + body = text; + } + if (!res.ok) { + const detail = typeof body === 'string' ? body : JSON.stringify(body); + throw new Error(`HTTP ${res.status}: ${detail?.slice?.(0, 300) ?? detail}`); + } + return body; +} + +const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); + +// --- Step 1: S3 multipart upload (Bearer user token) → DownloadUrl --- + +type PresignedPayload = { + FileId: string; + UploadId: string; + ChunkSize: number; + Parts: { PartNumber: number; PresignedUrl: string }[]; +}; + +async function uploadFile(fileUri: string, userAccessToken: string, onStatus?: StatusFn): Promise { + const file = new File(fileUri); + const size = file.size; + if (size == null) throw new Error(`Exported file not found at ${fileUri}`); + + onStatus?.('requesting upload URLs…'); + const presigned: PresignedPayload = await readJson( + await fetch(`${BASE_URL}/open/partner/files/upload/generate-presigned-urls`, { + method: 'POST', + headers: { Authorization: `Bearer ${userAccessToken}`, 'Content-Type': 'application/json' }, + body: JSON.stringify({ filesize: size, filetype: 'mp3' }), + }), + ); + + const chunkSize = presigned.ChunkSize; + const parts = presigned.Parts ?? []; + const uploadedParts: { PartNumber: number; ETag: string }[] = []; + + // Read the file into memory once. We can't use file.slice(): on React Native it does + // `new Blob([bytes])`, and RN's Blob polyfill throws "creating blobs from arraybuffer are + // not supported". Instead we PUT a Uint8Array chunk — RN's networking layer base64-encodes + // typed-array bodies natively (see convertRequestBody). + const bytes = new Uint8Array(await file.arrayBuffer()); + + for (const part of parts) { + const start = (part.PartNumber - 1) * chunkSize; + const end = Math.min(start + chunkSize, size); + const chunk = bytes.slice(start, end); + onStatus?.(`uploading part ${part.PartNumber}/${parts.length}…`); + const put = await fetch(part.PresignedUrl, { method: 'PUT', body: chunk }); + if (!put.ok) throw new Error(`Part ${part.PartNumber} upload failed (HTTP ${put.status})`); + const etag = (put.headers.get('ETag') ?? '').replace(/"/g, ''); + if (!etag) throw new Error(`Part ${part.PartNumber} upload returned no ETag`); + uploadedParts.push({ PartNumber: part.PartNumber, ETag: etag }); + } + + onStatus?.('finalizing upload…'); + const complete = await readJson( + await fetch(`${BASE_URL}/open/partner/files/upload/complete-upload`, { + method: 'POST', + headers: { Authorization: `Bearer ${userAccessToken}`, 'Content-Type': 'application/json' }, + body: JSON.stringify({ + file_id: presigned.FileId, + upload_id: presigned.UploadId, + part_list: uploadedParts, + filetype: 'mp3', + ...(file.md5 ? { file_md5: file.md5 } : {}), + }), + }), + ); + + const downloadUrl: string | undefined = complete?.DownloadUrl; + if (!downloadUrl) throw new Error('complete-upload returned no DownloadUrl'); + return downloadUrl; +} + +// --- Step 2 + 3: submit transcription and poll (X-Client-* headers) --- + +async function submitTranscription(fileUrl: string, onStatus?: StatusFn): Promise { + onStatus?.('submitting transcription…'); + const body = { + file_url: fileUrl, + params: { + transcribe: { language: 'auto', model: 'plaud-fast-whisper' }, + vad: { decode_silence: false }, + diarization: { enabled: false, return_embedding: false }, + }, + }; + const res = await readJson( + await fetch(`${BASE_URL}/open/partner/ai/transcriptions/`, { + method: 'POST', + headers: { ...transcriptionHeaders(), 'Content-Type': 'application/json' }, + body: JSON.stringify(body), + }), + ); + const id = res?.transcription_id ?? res?.data?.task_id; + if (!id) throw new Error(`Submit returned no transcription id: ${JSON.stringify(res).slice(0, 200)}`); + return String(id); +} + +/** Pull the transcript text out of the poll response, whatever shape it arrives in. */ +function extractTranscript(data: any): string { + if (!data) return ''; + if (typeof data.text === 'string' && data.text.trim()) return data.text; + if (Array.isArray(data.results)) { + return data.results.map((r: any) => r?.text ?? '').filter(Boolean).join('\n\n'); + } + if (Array.isArray(data.segments)) { + return data.segments.map((s: any) => s?.text ?? '').filter(Boolean).join(' '); + } + return ''; +} + +async function pollTranscription( + transcriptionId: string, + onStatus?: StatusFn, + { intervalMs = 3000, timeoutMs = 180_000 }: { intervalMs?: number; timeoutMs?: number } = {}, +): Promise { + const deadline = Date.now() + timeoutMs; + while (Date.now() < deadline) { + const res = await readJson( + await fetch(`${BASE_URL}/open/partner/ai/transcriptions/${transcriptionId}`, { + headers: transcriptionHeaders(), + }), + ); + const data = res?.data ?? res; + const transcript = extractTranscript(data); + if (transcript) return transcript; + + const status = String(res?.status ?? data?.task_status ?? '').toUpperCase(); + if (status.includes('FAIL') || status.includes('ERROR')) { + throw new Error(`Transcription failed: ${status || 'unknown error'}`); + } + onStatus?.(`transcribing… (${status.toLowerCase() || 'processing'})`); + await delay(intervalMs); + } + throw new Error('Transcription timed out'); +} + +/** + * Upload an exported audio file and return its transcript. `fileUri` is the `file://` path + * from `PlaudSdk.exportAudio`; `userAccessToken` is the token used for `initSDK`. + */ +export async function transcribeExportedFile( + fileUri: string, + userAccessToken: string, + onStatus?: StatusFn, +): Promise { + const fileUrl = await uploadFile(fileUri, userAccessToken, onStatus); + const transcriptionId = await submitTranscription(fileUrl, onStatus); + return pollTranscription(transcriptionId, onStatus); +} diff --git a/react-native-demo/tsconfig.json b/react-native-demo/tsconfig.json index 2e9a669..e310f3e 100644 --- a/react-native-demo/tsconfig.json +++ b/react-native-demo/tsconfig.json @@ -8,6 +8,9 @@ ], "@/assets/*": [ "./assets/*" + ], + "plaud-sdk": [ + "./modules/plaud-sdk" ] } },